From b9a2d181a1c081409370458a23d27230f852349d Mon Sep 17 00:00:00 2001 From: "erik.corry@gmail.com" Date: Mon, 7 Nov 2011 14:00:02 +0000 Subject: [PATCH] Revert accidental commit that messed up the incremental speed heuristics. Review URL: http://codereview.chromium.org/8467014 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9899 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/incremental-marking.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/incremental-marking.cc b/src/incremental-marking.cc index 6d2f393ce9..0f813adacc 100644 --- a/src/incremental-marking.cc +++ b/src/incremental-marking.cc @@ -831,7 +831,7 @@ void IncrementalMarking::Step(intptr_t allocated_bytes) { speed_up = true; } - if (speed_up && 0) { + if (speed_up) { allocation_marking_factor_ += kAllocationMarkingFactorSpeedup; allocation_marking_factor_ = static_cast(allocation_marking_factor_ * 1.3);