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);



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to