summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-11-02 01:24:49 +0000
committerEric Christopher <echristo@apple.com>2010-11-02 01:24:49 +0000
commitb2abb508ae8855fcd47e890849d87dc67adef63e (patch)
tree7575abce3a00b02f0f7f6e8d569f4369dffa16a3
parentac746e1b3862bd4d6ffc06d8285e060b50b339e8 (diff)
downloadbcm5719-llvm-b2abb508ae8855fcd47e890849d87dc67adef63e.tar.gz
bcm5719-llvm-b2abb508ae8855fcd47e890849d87dc67adef63e.zip
Remove an assert - it's possible to be hit, and we just want to avoid
handling those cases for now. llvm-svn: 117996
-rw-r--r--llvm/lib/Target/ARM/ARMFastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp
index 41e63dc5651..d89050e370b 100644
--- a/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/llvm/lib/Target/ARM/ARMFastISel.cpp
@@ -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:
OpenPOWER on IntegriCloud