Revision: 13199
Author:   [email protected]
Date:     Tue Dec 11 12:19:37 2012
Log:      Fixed compilation error on Win64.

BUG=

Review URL: https://codereview.chromium.org/11538010
http://code.google.com/p/v8/source/detail?r=13199

Modified:
 /branches/bleeding_edge/src/spaces.cc

=======================================
--- /branches/bleeding_edge/src/spaces.cc       Tue Dec 11 09:45:01 2012
+++ /branches/bleeding_edge/src/spaces.cc       Tue Dec 11 12:19:37 2012
@@ -1937,7 +1937,7 @@


 intptr_t FreeListCategory::CountFreeListItemsInList(Page* p) {
-  intptr_t sum = 0;
+  int sum = 0;
   FreeListNode* n = top_;
   while (n != NULL) {
     if (Page::FromAddress(n->address()) == p) {
@@ -1951,7 +1951,7 @@


 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

Reply via email to