[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelLowering.cpp
Evan Cheng
evan.cheng at apple.com
Thu Mar 30 17:30:51 PST 2006
Changes in directory llvm/lib/Target/X86:
X86ISelLowering.cpp updated: 1.148 -> 1.149
---
Log message:
Expand all INSERT_VECTOR_ELT (obviously bad) for now.
---
Diffs of the changes: (+1 -0)
X86ISelLowering.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.148 llvm/lib/Target/X86/X86ISelLowering.cpp:1.149
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.148 Thu Mar 30 18:33:57 2006
+++ llvm/lib/Target/X86/X86ISelLowering.cpp Thu Mar 30 19:30:39 2006
@@ -257,6 +257,7 @@
setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Expand);
setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Expand);
setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
+ setOperationAction(ISD::INSERT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
}
if (Subtarget->hasMMX()) {
More information about the llvm-commits
mailing list