summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-18 01:18:48 +0000
committerChris Lattner <sabre@nondot.org>2006-10-18 01:18:48 +0000
commitab4df834267793949d3a45662b646decaa0feaaf (patch)
tree5f57559b8880f7437b83e75a8128ddbf446bd346 /llvm/lib
parent73da320e50dbaa5b6208176bcc7a44883b29de21 (diff)
downloadbcm5719-llvm-ab4df834267793949d3a45662b646decaa0feaaf.tar.gz
bcm5719-llvm-ab4df834267793949d3a45662b646decaa0feaaf.zip
Expand alloca for ppc64
llvm-svn: 31027
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/PowerPC/PPCISelLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index d2fd3cd8622..09569a89921 100644
--- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -153,7 +153,8 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM)
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);
OpenPOWER on IntegriCloud