fix PR5673 by being more careful about pointers to functions.
authorChris Lattner <sabre@nondot.org>
Thu, 3 Dec 2009 01:05:45 +0000 (01:05 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 3 Dec 2009 01:05:45 +0000 (01:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90369 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ConstantFolding.cpp
test/Transforms/InstCombine/crash.ll

index 96f738edad4e8ebe54fc36d48f1b4784cc28287f..4b0b9a54c774bcc474c9b66386351f53e6266e6b 100644 (file)
@@ -569,9 +569,16 @@ static Constant *SymbolicallyEvaluateGEP(Constant *const *Ops, unsigned NumOps,
   SmallVector<Constant*, 32> NewIdxs;
   do {
     if (const SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
-      // The only pointer indexing we'll do is on the first index of the GEP.
-      if (isa<PointerType>(ATy) && !NewIdxs.empty())
-        break;
+      if (isa<PointerType>(ATy)) {
+        // The only pointer indexing we'll do is on the first index of the GEP.
+        if (!NewIdxs.empty())
+          break;
+       
+        // Only handle pointers to sized types, not pointers to functions.
+        if (!ATy->getElementType()->isSized())
+          return 0;
+      }
+        
       // Determine which element of the array the offset points into.
       APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType()));
       if (ElemSize == 0)
index 1528f6ddf3c026275219eb23ae5dbf5966d90c7c..82ac575717814bb19035eb9d20f82f176e51e1c8 100644 (file)
@@ -137,3 +137,14 @@ define arm_apcscc void @test5() {
 exit:
        ret void
 }
+
+
+; PR5673
+
+@test6g = external global i32*  
+
+define arm_aapcs_vfpcc i32 @test6(i32 %argc, i8** %argv) nounwind {
+entry:
+  store i32* getelementptr (i32* bitcast (i32 (i32, i8**)* @test6 to i32*), i32 -2048), i32** @test6g, align 4
+  unreachable
+}