diff options
author | Dale Johannesen <dalej@apple.com> | 2009-05-13 18:25:07 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2009-05-13 18:25:07 +0000 |
commit | 65f8c9fdcf05dd96aadc7590c06e2c2f102c990f (patch) | |
tree | 866e9486cb3746861342cc94081797d35dab8e2c /lib/Transforms/Utils | |
parent | c47015e61d660426e3526826472f61fcd1ea72fe (diff) | |
download | external_llvm-65f8c9fdcf05dd96aadc7590c06e2c2f102c990f.zip external_llvm-65f8c9fdcf05dd96aadc7590c06e2c2f102c990f.tar.gz external_llvm-65f8c9fdcf05dd96aadc7590c06e2c2f102c990f.tar.bz2 |
Don't generate a select whose operand is load of a weak
external. These may have address 0 and are not safe
to execute unconditionally.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71688 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 4435b13..4834591 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -18,6 +18,7 @@ #include "llvm/IntrinsicInst.h" #include "llvm/Type.h" #include "llvm/DerivedTypes.h" +#include "llvm/GlobalVariable.h" #include "llvm/Support/CFG.h" #include "llvm/Support/Debug.h" #include "llvm/Analysis/ConstantFolding.h" @@ -393,6 +394,11 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB, if (!isa<AllocaInst>(I->getOperand(0)) && !isa<Constant>(I->getOperand(0))) return false; + // External weak globals may have address 0, so we can't load them. + if (GlobalVariable* GV= dyn_cast<GlobalVariable>(I->getOperand(0))) { + if (GV->hasExternalWeakLinkage()) + return false; + } // Finally, we have to check to make sure there are no instructions // before the load in its basic block, as we are going to hoist the loop |