| Index: runtime/vm/isolate.cc
|
| ===================================================================
|
| --- runtime/vm/isolate.cc (revision 45790)
|
| +++ runtime/vm/isolate.cc (working copy)
|
| @@ -1417,6 +1417,10 @@
|
| StackZone stack_zone(this);
|
| HandleScope handle_scope(this);
|
|
|
| + if (compiler_stats_ != NULL) {
|
| + compiler_stats()->Print();
|
| + }
|
| +
|
| // Notify exit listeners that this isolate is shutting down.
|
| if (object_store() != NULL) {
|
| NotifyExitListeners();
|
| @@ -1443,9 +1447,6 @@
|
| api_state()->weak_persistent_handles().VisitHandles(&visitor);
|
| api_state()->prologue_weak_persistent_handles().VisitHandles(&visitor);
|
|
|
| - if (compiler_stats_ != NULL) {
|
| - compiler_stats()->Print();
|
| - }
|
| if (FLAG_trace_isolates) {
|
| heap()->PrintSizes();
|
| megamorphic_cache_table()->PrintSizes();
|
|
|