Reviewers: Michael Starzinger, danno,
Description:
Fixed compilation error on Win64.
BUG=
Please review this at https://codereview.chromium.org/11538010/
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
ab3bcf2d84c8d1a19912380d7d5f4a98764b2df9..ff2f1bddf6a4625178ce57e0a102f80dcbc9a50f
100644
--- a/src/spaces.cc
+++ b/src/spaces.cc
@@ -1951,7 +1951,7 @@ intptr_t
FreeListCategory::CountFreeListItemsInList(Page* p) {
intptr_t FreeListCategory::EvictFreeListItemsInList(Page* p) {
- intptr_t sum = 0;
+ int sum = 0;
FreeListNode** n = &top_;
while (*n != NULL) {
if (Page::FromAddress((*n)->address()) == p) {
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev