Fix Win64 build problem introduced by r5041.

Review URL: http://codereview.chromium.org/2893009

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5042 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
vegorov@chromium.org 2010-07-12 13:11:42 +00:00
parent ef6cb2dd0b
commit 4dd71ce221

View File

@ -818,7 +818,7 @@ class PromotionQueue {
void remove(HeapObject** target, int* size) {
*target = reinterpret_cast<HeapObject*>(*(--front_));
*size = *(--front_);
*size = static_cast<int>(*(--front_));
// Assert no underflow.
ASSERT(front_ >= rear_);
}