| Index: src/heap/incremental-marking.h
|
| diff --git a/src/heap/incremental-marking.h b/src/heap/incremental-marking.h
|
| index 2e648e7e2fb8d417beeedc8f27aa8bc0c52b848d..7668def6795323d2497068b7ffcd7c5cfba1c91d 100644
|
| --- a/src/heap/incremental-marking.h
|
| +++ b/src/heap/incremental-marking.h
|
| @@ -169,19 +169,7 @@ class IncrementalMarking {
|
|
|
| void ActivateGeneratedStub(Code* stub);
|
|
|
| - void NotifyOfHighPromotionRate() {
|
| - if (IsMarking()) {
|
| - if (marking_speed_ < kFastMarking) {
|
| - if (FLAG_trace_gc) {
|
| - PrintPID(
|
| - "Increasing marking speed to %d "
|
| - "due to high promotion rate\n",
|
| - static_cast<int>(kFastMarking));
|
| - }
|
| - marking_speed_ = kFastMarking;
|
| - }
|
| - }
|
| - }
|
| + void NotifyOfHighPromotionRate();
|
|
|
| void EnterNoMarkingScope() { no_marking_scope_depth_++; }
|
|
|
|
|