diff options
| author | Eric Christopher <echristo@apple.com> | 2010-11-02 01:24:49 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-11-02 01:24:49 +0000 |
| commit | b2abb508ae8855fcd47e890849d87dc67adef63e (patch) | |
| tree | 7575abce3a00b02f0f7f6e8d569f4369dffa16a3 | |
| parent | ac746e1b3862bd4d6ffc06d8285e060b50b339e8 (diff) | |
| download | bcm5719-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.cpp | 2 |
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: |

