1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

update assert message

llvm-svn: 31093
This commit is contained in:
Chris Lattner 2006-10-21 04:42:29 +00:00
parent 52a4558cf2
commit 596c126372

View File

@ -381,7 +381,7 @@ void X86InstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
return;
}
assert(Cond.size() == 1 && "X86 branch conditions have two components!");
assert(Cond.size() == 1 && "X86 branch conditions have one component!");
// Conditional branch.
unsigned Opc = GetCondBranchFromCond((X86::CondCode)Cond[0].getImm());