[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
Chris Lattner
sabre at nondot.org
Tue Oct 17 18:19:02 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCISelLowering.cpp updated: 1.212 -> 1.213
---
Log message:
Expand alloca for ppc64
---
Diffs of the changes: (+2 -1)
PPCISelLowering.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.212 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.213
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.212 Fri Oct 13 16:14:26 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Tue Oct 17 20:18:48 2006
@@ -153,7 +153,8 @@
setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand);
-
+ setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Expand);
+
// We want to custom lower some of our intrinsics.
setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
More information about the llvm-commits
mailing list