Added missing curly braces which renders the if clause useless in debug build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2007-10-20 04:01:47 +00:00
parent e526962fc5
commit b9d5e7cdc9

View File

@ -171,7 +171,7 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
// If this instruction is potentially convertible to a true // If this instruction is potentially convertible to a true
// three-address instruction, // three-address instruction,
if (TID->Flags & M_CONVERTIBLE_TO_3_ADDR) if (TID->Flags & M_CONVERTIBLE_TO_3_ADDR) {
// FIXME: This assumes there are no more operands which are tied // FIXME: This assumes there are no more operands which are tied
// to another register. // to another register.
#ifndef NDEBUG #ifndef NDEBUG
@ -188,6 +188,7 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
// Done with this instruction. // Done with this instruction.
break; break;
} }
}
} }
InstructionRearranged: InstructionRearranged: