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

Unified Diff: runtime/vm/isolate.cc

Issue 1300033002: Fix compiler stats (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove dead code in parser Created 5 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/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 4d6c56c743ae95cd80433efb7132370acfa6ad6e..f74b94b4cc3b3c14401ef3deadc5b73d51d0142e 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -1526,7 +1526,7 @@ void Isolate::Shutdown() {
NoSafepointScope no_safepoint_scope;
if (compiler_stats_ != NULL) {
- compiler_stats()->Print();
+ OS::Print("%s", compiler_stats()->PrintToZone());
}
// Notify exit listeners that this isolate is shutting down.

Powered by Google App Engine
This is Rietveld 408576698