Stupid cut-n-paste bug caused me soooo much grief. Why wasn't there a compilation warning? I blame it on the FE folks.

llvm-svn: 37484
This commit is contained in:
Evan Cheng 2007-06-07 01:37:54 +00:00
parent 4cd6971f99
commit 9f23724d53

View File

@ -476,7 +476,7 @@ ARMInstrInfo::SubsumesPredicate(const std::vector<MachineOperand> &Pred1,
return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
case ARMCC::GE:
return CC2 == ARMCC::GT || CC2 == ARMCC::EQ;
case ARMCC::LE: return "le";
case ARMCC::LE:
return CC2 == ARMCC::LT || CC2 == ARMCC::EQ;
}
}