| Index: src/counters.h
|
| diff --git a/src/counters.h b/src/counters.h
|
| index 495a023ebee2699ce47bf0a5190989e6e1d72c28..8967c500c54b0932f9532b7c11be6aed0de8338f 100644
|
| --- a/src/counters.h
|
| +++ b/src/counters.h
|
| @@ -483,7 +483,7 @@ double AggregatedMemoryHistogram<Histogram>::Aggregate(double current_ms,
|
|
|
| struct RuntimeCallCounter {
|
| explicit RuntimeCallCounter(const char* name) : name(name) {}
|
| - void Reset();
|
| + V8_NOINLINE void Reset();
|
| V8_NOINLINE void Dump(std::stringstream& out);
|
|
|
| const char* name;
|
| @@ -798,8 +798,8 @@ class RuntimeCallStats {
|
| CounterId counter_id);
|
|
|
| void Reset();
|
| - V8_NOINLINE void Print(std::ostream& os);
|
| - V8_NOINLINE std::string Dump();
|
| + void Print(std::ostream& os);
|
| + std::string Dump();
|
|
|
| RuntimeCallStats() {
|
| Reset();
|
|
|