summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaISelLowering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-13 09:00:43 +0000
committerChris Lattner <sabre@nondot.org>2006-02-13 09:00:43 +0000
commit94dd29216cfcc2719be1cb8b7baa8cc19434e3ce (patch)
treed08ae9491cc2e6fd15a71121d537a57f8b9d2e70 /lib/Target/Alpha/AlphaISelLowering.cpp
parent45b3976db7f20abe99035962596698008a60033f (diff)
downloadllvm-94dd29216cfcc2719be1cb8b7baa8cc19434e3ce.tar.gz
llvm-94dd29216cfcc2719be1cb8b7baa8cc19434e3ce.tar.bz2
llvm-94dd29216cfcc2719be1cb8b7baa8cc19434e3ce.tar.xz
Switch targets over to using SelectionDAG::getCALLSEQ_START to create
CALLSEQ_START nodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelLowering.cpp')
-rw-r--r--lib/Target/Alpha/AlphaISelLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaISelLowering.cpp b/lib/Target/Alpha/AlphaISelLowering.cpp
index c9cafd478e..04c4255daf 100644
--- a/lib/Target/Alpha/AlphaISelLowering.cpp
+++ b/lib/Target/Alpha/AlphaISelLowering.cpp
@@ -327,8 +327,8 @@ AlphaTargetLowering::LowerCallTo(SDOperand Chain,
if (Args.size() > 6)
NumBytes = (Args.size() - 6) * 8;
- Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
- DAG.getConstant(NumBytes, getPointerTy()));
+ Chain = DAG.getCALLSEQ_START(Chain,
+ DAG.getConstant(NumBytes, getPointerTy()));
std::vector<SDOperand> args_to_use;
for (unsigned i = 0, e = Args.size(); i != e; ++i)
{