[llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Aug 11 10:39:00 PDT 2006



Changes in directory llvm/lib/Target/IA64:

IA64ISelLowering.cpp updated: 1.39 -> 1.40
---
Log message:

Eliminate use of getNode that takes a vector.


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

 IA64ISelLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/IA64/IA64ISelLowering.cpp
diff -u llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.39 llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.40
--- llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.39	Fri Aug 11 12:21:12 2006
+++ llvm/lib/Target/IA64/IA64ISelLowering.cpp	Fri Aug 11 12:38:39 2006
@@ -396,7 +396,7 @@
 
   // Emit all stores, make sure they occur before any copies into physregs.
   if (!Stores.empty())
-    Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
+    Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
 
   static const unsigned IntArgRegs[] = {
     IA64::out0, IA64::out1, IA64::out2, IA64::out3, 






More information about the llvm-commits mailing list