Changes in directory llvm/lib/Target/ARM:
ARMISelDAGToDAG.cpp updated: 1.27 -> 1.28 --- Log message: Eliminate use of getNode that takes a vector. --- Diffs of the changes: (+2 -1) ARMISelDAGToDAG.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp diff -u llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.27 llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.28 --- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.27 Fri Aug 11 12:22:35 2006 +++ llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp Fri Aug 11 12:38:39 2006 @@ -121,7 +121,8 @@ } } if (!MemOpChains.empty()) - Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, MemOpChains); + Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, + &MemOpChains[0], MemOpChains.size()); // Build a sequence of copy-to-reg nodes chained together with token chain // and flag operands which copy the outgoing args into the appropriate regs. _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits