aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-06-07 01:37:54 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-06-07 01:37:54 +0000
commit9328c1ac66397775be850b6d2b64fa8a8f4aca6c (patch)
tree4f691c41ca0e4d9f602c957e034101bbfa3f8959 /lib
parent497391ad8d35fd8dcf6b48f459c179e3db3d3c5c (diff)
Stupid cut-n-paste bug caused me soooo much grief. Why wasn't there a compilation warning? I blame it on the FE folks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37484 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.cpp b/lib/Target/ARM/ARMInstrInfo.cpp
index 7b7b0b46f4..867ce063b1 100644
--- a/lib/Target/ARM/ARMInstrInfo.cpp
+++ b/lib/Target/ARM/ARMInstrInfo.cpp
@@ -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;
}
}