[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Feb 13 01:00:56 PST 2006



Changes in directory llvm/lib/Target/Sparc:

SparcISelDAGToDAG.cpp updated: 1.83 -> 1.84
---
Log message:

Switch targets over to using SelectionDAG::getCALLSEQ_START to create
CALLSEQ_START nodes.


---
Diffs of the changes:  (+1 -2)

 SparcISelDAGToDAG.cpp |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)


Index: llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
diff -u llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.83 llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.84
--- llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.83	Fri Feb 10 01:35:42 2006
+++ llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp	Mon Feb 13 03:00:43 2006
@@ -481,8 +481,7 @@
   // Keep stack frames 8-byte aligned.
   ArgsSize = (ArgsSize+7) & ~7;
 
-  Chain = DAG.getNode(ISD::CALLSEQ_START, MVT::Other, Chain,
-                      DAG.getConstant(ArgsSize, getPointerTy()));
+  Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(ArgsSize, getPointerTy()));
   
   SDOperand StackPtr, NullSV;
   std::vector<SDOperand> Stores;






More information about the llvm-commits mailing list