[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelLowering.cpp
Evan Cheng
evan.cheng at apple.com
Thu Mar 8 13:59:58 PST 2007
Changes in directory llvm/lib/Target/ARM:
ARMISelLowering.cpp updated: 1.19 -> 1.20
---
Log message:
Fix a typo.
---
Diffs of the changes: (+1 -1)
ARMISelLowering.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/ARM/ARMISelLowering.cpp
diff -u llvm/lib/Target/ARM/ARMISelLowering.cpp:1.19 llvm/lib/Target/ARM/ARMISelLowering.cpp:1.20
--- llvm/lib/Target/ARM/ARMISelLowering.cpp:1.19 Wed Mar 7 10:25:08 2007
+++ llvm/lib/Target/ARM/ARMISelLowering.cpp Thu Mar 8 15:59:30 2007
@@ -167,7 +167,7 @@
setOperationAction(ISD::LOCATION, MVT::Other, Expand);
setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
// FIXME - use subtarget debug flags
- if (Subtarget->isTargetDarwin())
+ if (!Subtarget->isTargetDarwin())
setOperationAction(ISD::LABEL, MVT::Other, Expand);
setOperationAction(ISD::RET, MVT::Other, Custom);
More information about the llvm-commits
mailing list