aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-13 02:40:58 +0000
committerChris Lattner <sabre@nondot.org>2006-01-13 02:40:58 +0000
commit33f79df40c71a3e6cad54ed9b9f4b3cf22e1cc30 (patch)
tree570876e1490cab4285f6c9763aa8827a25e496e1
parent5a67afc118d47a0061ca9809c763451ea3125306 (diff)
downloadexternal_llvm-33f79df40c71a3e6cad54ed9b9f4b3cf22e1cc30.zip
external_llvm-33f79df40c71a3e6cad54ed9b9f4b3cf22e1cc30.tar.gz
external_llvm-33f79df40c71a3e6cad54ed9b9f4b3cf22e1cc30.tar.bz2
new nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25271 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/IA64/IA64ISelLowering.cpp4
-rw-r--r--lib/Target/IA64/IA64ISelPattern.cpp4
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/Target/IA64/IA64ISelLowering.cpp b/lib/Target/IA64/IA64ISelLowering.cpp
index 329a8cd..91d3f35 100644
--- a/lib/Target/IA64/IA64ISelLowering.cpp
+++ b/lib/Target/IA64/IA64ISelLowering.cpp
@@ -83,6 +83,10 @@ IA64TargetLowering::IA64TargetLowering(TargetMachine &TM)
setOperationAction(ISD::ROTL , MVT::i64 , Expand);
setOperationAction(ISD::ROTR , MVT::i64 , Expand);
+ // Not implemented yet.
+ setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
+ setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
+
computeRegisterProperties();
addLegalFPImmediate(+0.0);
diff --git a/lib/Target/IA64/IA64ISelPattern.cpp b/lib/Target/IA64/IA64ISelPattern.cpp
index 3f8942c..3aeb159 100644
--- a/lib/Target/IA64/IA64ISelPattern.cpp
+++ b/lib/Target/IA64/IA64ISelPattern.cpp
@@ -107,6 +107,10 @@ namespace {
setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
+ // Not implemented yet.
+ setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
+ setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
+
computeRegisterProperties();
addLegalFPImmediate(+0.0);