diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-21 04:42:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-21 04:42:29 +0000 |
commit | 2a445add12d6a16d8793de60df92d0733e66af0c (patch) | |
tree | 4192549f17467d09e177099e4e795cf546c199dd | |
parent | 12143054aa6d120f029d268a5154bf2ecd0f707f (diff) |
update assert message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31093 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index c5e45a8c64..b2b9d557e1 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp @@ -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()); |