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
This commit is contained in:
erik.corry@gmail.com 2011-11-07 14:00:02 +00:00
parent c0d0bf863a
commit b9a2d181a1

View File

@ -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<int>(allocation_marking_factor_ * 1.3);