Don't crash on code where the user put __attribute__((constructor)) on
authorDan Gohman <gohman@apple.com>
Wed, 18 Apr 2012 22:24:33 +0000 (22:24 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 18 Apr 2012 22:24:33 +0000 (22:24 +0000)
a function with arguments. This fixes rdar://11265785.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155073 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/ObjCARC.cpp

index 7e3e69b78d307e8fa382669fe9135ea23fe94495..29234da644faf32277278749460c0c695cc5ae6b 100644 (file)
@@ -1033,7 +1033,11 @@ bool ObjCARCAPElim::runOnModule(Module &M) {
     Value *Op = *OI;
     // llvm.global_ctors is an array of pairs where the second members
     // are constructor functions.
-    Function *F = cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
+    Function *F = dyn_cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
+    // If the user used a constructor function with the wrong signature and
+    // it got bitcasted or whatever, look the other way.
+    if (!F)
+      continue;
     // Only look at function definitions.
     if (F->isDeclaration())
       continue;