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

Unified Diff: src/heap/marking.h

Issue 2734823003: [heap] Remove ObjectMarking::BlackToWhite and ObjectMarking::GreyToWhite. (Closed)
Patch Set: [heap] Remove ObjectMarking::BlackToWhite and ObjectMarking::GreyToWhite. Created 3 years, 9 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
« no previous file with comments | « src/heap/mark-compact.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/marking.h
diff --git a/src/heap/marking.h b/src/heap/marking.h
index b80162b48dc4d9f3c697a51385bf33dbc32e5272..69c103f618a3734bb368e14c961c79e0605216b4 100644
--- a/src/heap/marking.h
+++ b/src/heap/marking.h
@@ -312,7 +312,6 @@ class Marking : public AllStatic {
INLINE(static void GreyToWhite(MarkBit markbit)) {
DCHECK(IsGrey(markbit));
markbit.Clear();
- markbit.Next().Clear();
}
INLINE(static void BlackToGrey(MarkBit markbit)) {
« no previous file with comments | « src/heap/mark-compact.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698