diff options
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index c3ed43d1f0..cc28e54c37 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -211,8 +211,7 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB, bool AllowAggressive){ if (cast<LoadInst>(I)->isVolatile()) return false; if (!isa<AllocaInst>(I->getOperand(0)) && - !isa<Constant>(I->getOperand(0)) && - !isa<GlobalValue>(I->getOperand(0))) + !isa<Constant>(I->getOperand(0))) return false; // Finally, we have to check to make sure there are no instructions |