Reviewers: Vyacheslav Egorov,

Message:
Fixes this:
http://build.chromium.org/p/client.v8/builders/V8%20Win64/builds/1909/steps/compile/logs/stdio

PTAL.

Description:
Fixing build error on Win64.


Please review this at http://codereview.chromium.org/8508058/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/spaces.cc


Index: src/spaces.cc
diff --git a/src/spaces.cc b/src/spaces.cc
index 0510f67ea5f9260ebb088c48a54c324670750e9c..54347c451af3f907f2f237b5cbb182388df89beb 100644
--- a/src/spaces.cc
+++ b/src/spaces.cc
@@ -1940,7 +1940,7 @@ intptr_t FreeList::EvictFreeListItems(Page* p) {
         EvictFreeListItemsInList(&large_list_, p);
   }

-  available_ -= sum;
+  available_ -= static_cast<int>(sum);

   return sum;
 }


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

Reply via email to