Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(938)

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 24837002: Optimize string interpolation by running it at compile time if all inputs are constant. This is don… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698