Chromium Code Reviews

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: Remove unnecessary parameter. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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.h » ('J')

Powered by Google App Engine