| Index: vm/il_printer.cc
|
| ===================================================================
|
| --- vm/il_printer.cc (revision 10157)
|
| +++ vm/il_printer.cc (working copy)
|
| @@ -479,15 +479,11 @@
|
|
|
| void ThrowInstr::PrintTo(BufferFormatter* f) const {
|
| f->Print(" %s:%d ", DebugName(), cid());
|
| - exception()->PrintTo(f);
|
| }
|
|
|
|
|
| void ReThrowInstr::PrintTo(BufferFormatter* f) const {
|
| f->Print(" %s:%d ", DebugName(), cid());
|
| - exception()->PrintTo(f);
|
| - f->Print(", ");
|
| - stack_trace()->PrintTo(f);
|
| }
|
|
|
|
|
| @@ -748,15 +744,11 @@
|
|
|
| void ThrowInstr::PrintToVisualizer(BufferFormatter* f) const {
|
| f->Print("_ %s:%d ", DebugName(), cid());
|
| - exception()->PrintTo(f);
|
| }
|
|
|
|
|
| void ReThrowInstr::PrintToVisualizer(BufferFormatter* f) const {
|
| f->Print("_ %s:%d ", DebugName(), cid());
|
| - exception()->PrintTo(f);
|
| - f->Print(", ");
|
| - stack_trace()->PrintTo(f);
|
| }
|
|
|
|
|
|
|