| Index: runtime/vm/flow_graph_builder.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_builder.cc (revision 28108)
|
| +++ runtime/vm/flow_graph_builder.cc (working copy)
|
| @@ -2151,18 +2151,6 @@
|
| }
|
|
|
|
|
| -void EffectGraphVisitor::TranslateArgumentList(
|
| - const ArgumentListNode& node,
|
| - ZoneGrowableArray<Value*>* values) {
|
| - for (intptr_t i = 0; i < node.length(); ++i) {
|
| - ValueGraphVisitor for_argument(owner(), temp_index());
|
| - node.NodeAt(i)->Visit(&for_argument);
|
| - Append(for_argument);
|
| - values->Add(for_argument.value());
|
| - }
|
| -}
|
| -
|
| -
|
| void EffectGraphVisitor::BuildPushArguments(
|
| const ArgumentListNode& node,
|
| ZoneGrowableArray<PushArgumentInstr*>* values) {
|
|
|