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

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
Index: runtime/vm/il_printer.cc
===================================================================
--- runtime/vm/il_printer.cc (revision 11671)
+++ 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());
}

Powered by Google App Engine
This is Rietveld 408576698