diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-27 00:11:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-27 00:11:02 +0000 |
commit | 7f712a19876bbbaf6749a3890c18eb290c869b95 (patch) | |
tree | 34b48f384d1d590ada539dd5ab2a76f04a698ad9 | |
parent | 699bebac4f3320b5a9a3c94ac76502caf61dd711 (diff) |
Add braces to avoid ambiguous else.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85185 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index d1b12b2046..4af6c1c41f 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -11344,7 +11344,7 @@ Instruction *InstCombiner::visitFree(Instruction &FI) { return EraseInstFromFunction(FI); // If we have a malloc call whose only use is a free call, delete both. - if (isMalloc(Op)) + if (isMalloc(Op)) { if (CallInst* CI = extractMallocCallFromBitCast(Op)) { if (Op->hasOneUse() && CI->hasOneUse()) { EraseInstFromFunction(FI); @@ -11358,6 +11358,7 @@ Instruction *InstCombiner::visitFree(Instruction &FI) { return EraseInstFromFunction(*cast<Instruction>(Op)); } } + } return 0; } |