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

Unified Diff: runtime/vm/il_printer.cc

Issue 10915026: We can throw an exception but we cannot deoptimize at a runtime call. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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 | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/il_printer.cc
===================================================================
--- runtime/vm/il_printer.cc (revision 11688)
+++ runtime/vm/il_printer.cc (working copy)
@@ -537,12 +537,12 @@
void ThrowInstr::PrintTo(BufferFormatter* f) const {
- f->Print(" %s:%d ", DebugName(), deopt_id());
+ f->Print(" %s" , DebugName());
}
void ReThrowInstr::PrintTo(BufferFormatter* f) const {
- f->Print(" %s:%d ", DebugName(), deopt_id());
+ f->Print(" %s ", DebugName());
}
@@ -779,12 +779,12 @@
void ThrowInstr::PrintToVisualizer(BufferFormatter* f) const {
- f->Print("_ %s:%d ", DebugName(), deopt_id());
+ f->Print("_ %s ", DebugName());
}
void ReThrowInstr::PrintToVisualizer(BufferFormatter* f) const {
- f->Print("_ %s:%d ", DebugName(), deopt_id());
+ f->Print("_ %s ", DebugName());
}
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698