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

Unified Diff: vm/compiler.cc

Issue 10834311: Split ToDouble into two IL instruction to make it work with SSA. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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 | vm/flow_graph_optimizer.cc » ('j') | vm/flow_graph_optimizer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/compiler.cc
===================================================================
--- vm/compiler.cc (revision 10648)
+++ vm/compiler.cc (working copy)
@@ -405,8 +405,7 @@
if (FLAG_disassemble) {
DisassembleCode(function, optimized);
} else if (FLAG_disassemble_optimized && optimized) {
- // Print unoptimized code along with the optimized code.
- DisassembleCode(function, false);
+ // TODO(fschneider): Print unoptimized code along with the optimized code.
srdjan 2012/08/14 21:21:26 Why did you remove it if you added a TODO? Did the
Florian Schneider 2012/08/15 10:27:23 The ia32 disassembler does not work for unoptimize
DisassembleCode(function, true);
}
isolate->set_long_jump_base(base);
« no previous file with comments | « no previous file | vm/flow_graph_optimizer.cc » ('j') | vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698