aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/IR/ConstantFold.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/IR/ConstantFold.cpp b/lib/IR/ConstantFold.cpp
index 46e391a..3219be1 100644
--- a/lib/IR/ConstantFold.cpp
+++ b/lib/IR/ConstantFold.cpp
@@ -1966,11 +1966,12 @@ static Constant *ConstantFoldGetElementPtrImpl(Constant *C,
else if (VectorType *VTy = dyn_cast<VectorType>(LastTy))
NumElements = VTy->getNumElements();
- if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx0)) {
- int64_t Idx0Val = CI->getSExtValue();
- if (NumElements > 0 && Idx0Val >= 0 &&
- (uint64_t)Idx0Val < NumElements)
- IsSequentialAccessInRange = true;
+ if (NumElements > 0) {
+ if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx0)) {
+ int64_t Idx0Val = CI->getSExtValue();
+ if (Idx0Val >= 0 && (uint64_t)Idx0Val < NumElements)
+ IsSequentialAccessInRange = true;
+ }
} else if (PointerType *PTy = dyn_cast<PointerType>(LastTy))
// Only handle pointers to sized types, not pointers to functions.
if (PTy->getElementType()->isSized())