diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-29 22:10:10 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-29 22:10:10 +0000 |
commit | ea4755300665eaf03599d0cc55cfdd2c27946a19 (patch) | |
tree | 3a41680f6c8d454765df5a7fca82f3c8ce9094b2 /lib/Transforms/Utils/Local.cpp | |
parent | 76c6ccbd4cee0637c961e32435177ab89e931fed (diff) |
revert r159440. As Duncan pointed out, the test for invoke is not needed at this point
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/Local.cpp')
-rw-r--r-- | lib/Transforms/Utils/Local.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp index e9097a4053..bed7d72fff 100644 --- a/lib/Transforms/Utils/Local.cpp +++ b/lib/Transforms/Utils/Local.cpp @@ -265,8 +265,7 @@ bool llvm::isInstructionTriviallyDead(Instruction *I) { return isa<UndefValue>(II->getArgOperand(1)); } - if (isAllocLikeFn(I)) - return isa<CallInst>(I); // do not mess around with invoke here + if (isAllocLikeFn(I)) return true; if (CallInst *CI = isFreeCall(I)) if (Constant *C = dyn_cast<Constant>(CI->getArgOperand(0))) |