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

Unified Diff: runtime/vm/compiler.cc

Issue 1958913003: VM precompiler: Allow optimizing static initializers. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler.cc
diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
index bea582fcfff7b4440da06ac3e3f5a694d81279a8..e084f1606dc6a3e64f38c5aee33a163dc219ad5a 100644
--- a/runtime/vm/compiler.cc
+++ b/runtime/vm/compiler.cc
@@ -1341,10 +1341,7 @@ static RawError* CompileFunctionHelper(CompilationPipeline* pipeline,
} else if (FLAG_disassemble_optimized &&
optimized &&
FlowGraphPrinter::ShouldPrint(function)) {
- // TODO(fschneider): Print unoptimized code along with the optimized code.
- THR_Print("*** BEGIN CODE\n");
Disassembler::DisassembleCode(function, true);
- THR_Print("*** END CODE\n");
}
DEBUG_ONLY(CheckInliningIntervals(function));
return Error::null();
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698