[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Mar 21 12:51:18 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCISelLowering.cpp updated: 1.106 -> 1.107
---
Log message:

These targets don't support EXTRACT_VECTOR_ELT, though, in time, X86 will.



---
Diffs of the changes:  (+1 -0)

 PPCISelLowering.cpp |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.106 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.107
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.106	Mon Mar 20 16:37:23 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp	Tue Mar 21 14:51:05 2006
@@ -168,6 +168,7 @@
     setOperationAction(ISD::MUL , (MVT::ValueType)VT, Expand);
     setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Expand);
     setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Expand);
+    setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
     
     // FIXME: We don't support any BUILD_VECTOR's yet.  We should custom expand
     // the ones we do, like splat(0.0) and splat(-0.0).






More information about the llvm-commits mailing list