Index: runtime/vm/isolate.cc |
=================================================================== |
--- runtime/vm/isolate.cc (revision 36527) |
+++ runtime/vm/isolate.cc (working copy) |
@@ -37,8 +37,6 @@ |
namespace dart { |
-DEFINE_FLAG(bool, report_usage_count, false, |
- "Track function usage and report."); |
DEFINE_FLAG(bool, trace_isolates, false, |
"Trace isolate creation and shut down."); |
DEFINE_FLAG(bool, pause_isolates_on_start, false, |
@@ -762,11 +760,8 @@ |
delete message_handler(); |
set_message_handler(NULL); |
- // Dump all accumalated timer data for the isolate. |
+ // Dump all accumulated timer data for the isolate. |
timer_list_.ReportTimers(); |
- if (FLAG_report_usage_count) { |
- PrintInvokedFunctions(); |
Ivan Posva
2014/05/22 21:15:38
This is the only call. Please remove the function
|
- } |
// Write out profiler data if requested. |
Profiler::WriteProfile(this); |