Reviewers: Vyacheslav Egorov,

Description:
Fix some fotgotten variable names.

[email protected]

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

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

Affected files:
  M src/global-handles.cc


Index: src/global-handles.cc
diff --git a/src/global-handles.cc b/src/global-handles.cc
index a9caf59476326d0bae25c461f326203db96b400b..5339840988d4e6f3c719ef84e6e4b49867ef16d0 100644
--- a/src/global-handles.cc
+++ b/src/global-handles.cc
@@ -379,7 +379,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
   // At the same time deallocate all DESTROYED nodes.
   ASSERT(Heap::gc_state() == Heap::NOT_IN_GC);
   const int initial_post_gc_processing_count = ++post_gc_processing_count;
-  bool next_gc_could_collect_more = false;
+  bool next_gc_likely_to_collect_more = false;
   Node** p = &head_;
   while (*p != NULL) {
     if ((*p)->PostGarbageCollectionProcessing()) {
@@ -400,7 +400,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
       }
       node->set_next_free(first_deallocated());
       set_first_deallocated(node);
-      next_gc_could_collect_more = true;
+      next_gc_likely_to_collect_more = true;
     } else {
       p = (*p)->next_addr();
     }
@@ -410,7 +410,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
     first_deallocated()->set_next(head());
   }

-  return next_gc_could_collect_more;
+  return next_gc_likely_to_collect_more;
 }




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

Reply via email to