Add missing paratheses.

llvm-svn: 43227
This commit is contained in:
Evan Cheng 2007-10-22 19:42:28 +00:00
parent fee916334a
commit 5163a8f53e
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
// Unallocatable register dead, ignore.
continue;
} else {
assert(!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1 &&
assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
"Silently clearing a virtual register?");
}