[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Mar 18 17:13:41 PST 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCISelLowering.cpp updated: 1.97 -> 1.98
---
Log message:
rename these nodes
---
Diffs of the changes: (+3 -3)
PPCISelLowering.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.97 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.98
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.97 Thu Mar 16 19:40:33 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Sat Mar 18 19:13:28 2006
@@ -179,10 +179,10 @@
setOperationAction(ISD::LOAD , MVT::v4f32, Legal);
setOperationAction(ISD::ADD , MVT::v4i32, Legal);
setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
- // FIXME: We don't support any ConstantVec's yet. We should custom expand
+ // FIXME: We don't support any BUILD_VECTOR's yet. We should custom expand
// the ones we do!
- setOperationAction(ISD::ConstantVec, MVT::v4f32, Expand);
- setOperationAction(ISD::ConstantVec, MVT::v4i32, Expand);
+ setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Expand);
+ setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Expand);
}
setSetCCResultContents(ZeroOrOneSetCCResult);
More information about the llvm-commits
mailing list