| Index: src/counters.h
|
| diff --git a/src/counters.h b/src/counters.h
|
| index aca5602e4d6fcf3a08b37f1a6b26b07459c661ec..a01a8735110617e38ee8b25eb35f35ad6a4d8723 100644
|
| --- a/src/counters.h
|
| +++ b/src/counters.h
|
| @@ -834,14 +834,13 @@ class RuntimeCallStats {
|
| bool in_use_;
|
| };
|
|
|
| -#define TRACE_RUNTIME_CALL_STATS(isolate, counter_name) \
|
| - do { \
|
| - if (V8_UNLIKELY(TRACE_EVENT_RUNTIME_CALL_STATS_TRACING_ENABLED() || \
|
| - FLAG_runtime_call_stats)) { \
|
| - RuntimeCallStats::CorrectCurrentCounterId( \
|
| - isolate->counters()->runtime_call_stats(), \
|
| - &RuntimeCallStats::counter_name); \
|
| - } \
|
| +#define TRACE_RUNTIME_CALL_STATS(isolate, counter_name) \
|
| + do { \
|
| + if (V8_UNLIKELY(FLAG_runtime_stats)) { \
|
| + RuntimeCallStats::CorrectCurrentCounterId( \
|
| + isolate->counters()->runtime_call_stats(), \
|
| + &RuntimeCallStats::counter_name); \
|
| + } \
|
| } while (false)
|
|
|
| #define TRACE_HANDLER_STATS(isolate, counter_name) \
|
|
|