summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorDuraid Madina <duraid@octopus.com.au>2005-12-25 14:09:08 +0000
committerDuraid Madina <duraid@octopus.com.au>2005-12-25 14:09:08 +0000
commit6b240e55d16557dd72767d9a5787d556f7b4c26c (patch)
treeee5404ef93045187231b4e041d41ce695d3d80cb /llvm/lib/Target
parent06dcc199f0a87b3d4a5e6886b968a75e7792a60f (diff)
downloadbcm5719-llvm-6b240e55d16557dd72767d9a5787d556f7b4c26c.tar.gz
bcm5719-llvm-6b240e55d16557dd72767d9a5787d556f7b4c26c.zip
unbreak calls, a few more tests should run. Tomorrow: bugpoint!
llvm-svn: 25010
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp b/llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp
index 8d5561b1cd7..09ad629640c 100644
--- a/llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp
+++ b/llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp
@@ -352,7 +352,6 @@ SDOperand IA64DAGToDAGISel::Select(SDOperand Op) {
unsigned CallOpcode;
SDOperand CallOperand;
- std::vector<MVT::ValueType> TypeOperands;
// if we can call directly, do so
if (GlobalAddressSDNode *GASD =
@@ -395,7 +394,7 @@ SDOperand IA64DAGToDAGISel::Select(SDOperand Op) {
// Finally, once everything is setup, emit the call itself
if(InFlag.Val)
- Chain = CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag, CallOperand, Chain, InFlag);
+ Chain = CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag, CallOperand, InFlag);
else // there might be no arguments
Chain = CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag, CallOperand, Chain);
InFlag = Chain.getValue(1);
OpenPOWER on IntegriCloud