Reviewers: dcarney,

Description:
Fix build.

[email protected]

Please review this at https://codereview.chromium.org/227653003/

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

Affected files (+1, -1 lines):
  M src/heap.cc


Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 381815dad734b9eda932a542d82c55266d30c0b1..731e2f3dd94a44c200738948a10f0106f8cf0002 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -7528,7 +7528,7 @@ void Heap::GarbageCollectionGreedyCheck() {
   ASSERT(FLAG_gc_greedy);
   if (isolate_->bootstrapper()->IsActive()) return;
   if (!AllowAllocationFailure::IsAllowed(isolate_)) return;
-  if (!AllowHeapAllocation::IsAllowed(isolate_)) return;
+  if (!AllowHeapAllocation::IsAllowed()) return;
   CollectGarbage(NEW_SPACE);
 }
 #endif


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to