Revision: 11037 Author: [email protected] Date: Wed Mar 14 03:19:37 2012 Log: Avoid implicit bool->int cast in CollectAllGarbage call
[email protected] Review URL: https://chromiumcodereview.appspot.com/9699016 http://code.google.com/p/v8/source/detail?r=11037 Modified: /branches/bleeding_edge/src/execution.cc ======================================= --- /branches/bleeding_edge/src/execution.cc Wed Mar 7 09:31:33 2012 +++ /branches/bleeding_edge/src/execution.cc Wed Mar 14 03:19:37 2012 @@ -885,7 +885,8 @@ } if (stack_guard->IsGCRequest()) { - isolate->heap()->CollectAllGarbage(false, "StackGuard GC request"); + isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags, + "StackGuard GC request"); stack_guard->Continue(GC_REQUEST); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
