[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
Evan Cheng
evan.cheng at apple.com
Mon Oct 30 00:03:00 PST 2006
Changes in directory llvm/lib/Target/ARM:
ARMISelDAGToDAG.cpp updated: 1.80 -> 1.81
---
Log message:
All targets expand BR_JT for now.
---
Diffs of the changes: (+2 -1)
ARMISelDAGToDAG.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
diff -u llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.80 llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.81
--- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.80 Thu Oct 26 08:31:25 2006
+++ llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp Mon Oct 30 02:02:39 2006
@@ -73,7 +73,8 @@
setOperationAction(ISD::MEMSET, MVT::Other, Expand);
- setOperationAction(ISD::BRIND, MVT::i32, Expand);
+ setOperationAction(ISD::BR_JT, MVT::Other, Expand);
+ setOperationAction(ISD::BRIND, MVT::Other, Expand);
setOperationAction(ISD::BR_CC, MVT::i32, Custom);
setOperationAction(ISD::BR_CC, MVT::f32, Custom);
setOperationAction(ISD::BR_CC, MVT::f64, Custom);
More information about the llvm-commits
mailing list