Add comment as follow up to r245712
[oota-llvm.git] / lib / IR / ConstantFold.cpp
index 5dd075a76905ca408ede83765f31480df0c07e03..f63ce9bbf038a1fda1da0a987341727618729f24 100644 (file)
@@ -1999,9 +1999,9 @@ static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) {
 /// \brief Test whether a given ConstantInt is in-range for a SequentialType.
 static bool isIndexInRangeOfSequentialType(SequentialType *STy,
                                            const ConstantInt *CI) {
-  if (auto *PTy = dyn_cast<PointerType>(STy))
-    // Only handle pointers to sized types, not pointers to functions.
-    return PTy->getElementType()->isSized();
+  // And indicies are valid when indexing along a pointer
+  if (isa<PointerType>(STy))
+    return true;
 
   uint64_t NumElements = 0;
   // Determine the number of elements in our sequential type.