Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Unified Diff: src/debug/debug.cc

Issue 1314863003: [heap] More flag cleanup. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compilation and add const to parameters Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 99036d71e7e7c6df559e192591ff1d36598e35ef..f9e97454ccfcf0fd08b0381e1a88638780a47305 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -1309,8 +1309,8 @@ bool Debug::PrepareFunctionForBreakPoints(Handle<SharedFunctionInfo> shared) {
}
// Make sure we abort incremental marking.
- isolate_->heap()->CollectAllGarbage(Heap::kMakeHeapIterableMask,
- "prepare for break points");
+ isolate_->heap()->CollectAllGarbage("prepare for break points",
+ Heap::kMakeHeapIterableMask);
{
HeapIterator iterator(isolate_->heap());
« no previous file with comments | « src/api.cc ('k') | src/extensions/statistics-extension.cc » ('j') | src/heap/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698