Stupid cut-n-paste bug caused me soooo much grief. Why wasn't there a compilation...
authorEvan Cheng <evan.cheng@apple.com>
Thu, 7 Jun 2007 01:37:54 +0000 (01:37 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 7 Jun 2007 01:37:54 +0000 (01:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37484 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrInfo.cpp

index 7b7b0b46f454ed0c8b569c5bfe98b05494a37258..867ce063b1984b9148a4305eb1a3333f35f3c8c2 100644 (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;
   }
 }