Reviewers: Mads Ager,

Description:
Fix Win64 build problem introduced by r5041.

Please review this at http://codereview.chromium.org/2893009/show

Affected files:
  M src/heap.cc


Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 5c9d77f6099235fdbe1d54afa89319d9d439c8c6..a27eff1786e3a2cf09540436afb4601058a7502a 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -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_);
   }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to