diff options
| author | Michael Liao <michael.liao@intel.com> | 2013-04-19 22:22:57 +0000 |
|---|---|---|
| committer | Michael Liao <michael.liao@intel.com> | 2013-04-19 22:22:57 +0000 |
| commit | b53d8963ce4940ed15ac50e6efdacc206bd5748a (patch) | |
| tree | f95e6f838e15080efad502125bfa7c2aa17f25be /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
| parent | 2a481fa63be612e4a47d992b799cc2848bb9b616 (diff) | |
| download | bcm5719-llvm-b53d8963ce4940ed15ac50e6efdacc206bd5748a.tar.gz bcm5719-llvm-b53d8963ce4940ed15ac50e6efdacc206bd5748a.zip | |
ArrayRefize getMachineNode(). No functionality change.
llvm-svn: 179901
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index a47b13a9944..5aec6ac05a2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2796,7 +2796,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, // If this is a normal EmitNode command, just create the new node and // add the results to the RecordedNodes list. Res = CurDAG->getMachineNode(TargetOpc, NodeToMatch->getDebugLoc(), - VTList, Ops.data(), Ops.size()); + VTList, Ops); // Add all the non-glue/non-chain results to the RecordedNodes list. for (unsigned i = 0, e = VTs.size(); i != e; ++i) { |

