Remove an assert - it's possible to be hit, and we just want to avoid

handling those cases for now.

llvm-svn: 117996
This commit is contained in:
Eric Christopher 2010-11-02 01:24:49 +00:00
parent ac746e1b38
commit b2abb508ae
1 changed files with 1 additions and 1 deletions

View File

@ -889,7 +889,7 @@ static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
case CmpInst::FCMP_ONE:
case CmpInst::FCMP_UEQ:
default:
assert(false && "Unhandled CmpInst::Predicate!");
// AL is our "false" for now. The other two need more compares.
return ARMCC::AL;
case CmpInst::ICMP_EQ:
case CmpInst::FCMP_OEQ: