From 59a472a742ac6218e0dcaf30ad8961b36d5fa1db Mon Sep 17 00:00:00 2001 From: "erik.corry@gmail.com" Date: Tue, 8 Nov 2011 10:57:34 +0000 Subject: [PATCH] Try to fix compile error on Windows. Review URL: http://codereview.chromium.org/8497010 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9908 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 68352f3..5727294 100644 --- a/src/incremental-marking.cc +++ b/src/incremental-marking.cc @@ -842,7 +842,7 @@ void IncrementalMarking::Step(intptr_t allocated_bytes) { } } - intptr_t promoted_during_marking = heap_->PromotedTotalSize() + int64_t promoted_during_marking = heap_->PromotedTotalSize() - old_generation_space_used_at_start_of_incremental_; intptr_t delay = allocation_marking_factor_ * MB; intptr_t scavenge_slack = heap_->MaxSemiSpaceSize(); -- 2.7.4