Index: src/heap/marking.h |
diff --git a/src/heap/marking.h b/src/heap/marking.h |
index 69c103f618a3734bb368e14c961c79e0605216b4..b8396b7f0b243f9036956761446571a2166dd727 100644 |
--- a/src/heap/marking.h |
+++ b/src/heap/marking.h |
@@ -303,17 +303,6 @@ class Marking : public AllStatic { |
markbit.Next().Clear(); |
} |
- INLINE(static void BlackToWhite(MarkBit markbit)) { |
- DCHECK(IsBlack(markbit)); |
- markbit.Clear(); |
- markbit.Next().Clear(); |
- } |
- |
- INLINE(static void GreyToWhite(MarkBit markbit)) { |
- DCHECK(IsGrey(markbit)); |
- markbit.Clear(); |
- } |
- |
INLINE(static void BlackToGrey(MarkBit markbit)) { |
DCHECK(IsBlack(markbit)); |
markbit.Next().Clear(); |