[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 27 11:40:20 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCISelLowering.cpp updated: 1.195 -> 1.196
---
Log message:
PPC doesn't have bit converts to/from i64
---
Diffs of the changes: (+2 -0)
PPCISelLowering.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.195 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.196
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.195 Tue Jun 27 13:18:41 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Tue Jun 27 13:40:08 2006
@@ -110,6 +110,8 @@
setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
+ setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
+ setOperationAction(ISD::BIT_CONVERT, MVT::f64, Expand);
// PowerPC does not have truncstore for i1.
setOperationAction(ISD::TRUNCSTORE, MVT::i1, Promote);
More information about the llvm-commits
mailing list