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

llvm-svn: 43196
This commit is contained in:
Evan Cheng 2007-10-20 04:01:47 +00:00
parent f28404f7e8
commit 7df9c5e089

View File

@ -171,7 +171,7 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
// If this instruction is potentially convertible to a true
// 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
// to another register.
#ifndef NDEBUG
@ -188,6 +188,7 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
// Done with this instruction.
break;
}
}
}
InstructionRearranged: