| Index: src/heap.h
|
| diff --git a/src/heap.h b/src/heap.h
|
| index 1ee2841b12b6066e43ac0bb4679e96a0180944c2..d2ccdb87935b3d9ef43fc5913e25955cd0bdd54d 100644
|
| --- a/src/heap.h
|
| +++ b/src/heap.h
|
| @@ -903,7 +903,6 @@ class Heap {
|
| inline bool CollectGarbage(AllocationSpace space);
|
|
|
| static const int kNoGCFlags = 0;
|
| - // TODO(gc) we are ignoring this flag
|
| static const int kForceCompactionMask = 1;
|
| static const int kMakeHeapIterableMask = 2;
|
|
|
| @@ -967,7 +966,7 @@ class Heap {
|
|
|
| // Heap root getters. We have versions with and without type::cast() here.
|
| // You can't use type::cast during GC because the assert fails.
|
| - // TODO(gc): Try removing the unchecked accessors, now that GC marking does
|
| + // TODO(1490): Try removing the unchecked accessors, now that GC marking does
|
| // not corrupt the stack.
|
| #define ROOT_ACCESSOR(type, name, camel_name) \
|
| type* name() { \
|
| @@ -1362,7 +1361,6 @@ class Heap {
|
| return &marking_;
|
| }
|
|
|
| - // TODO(gc) Rename to IncrementalMarker after merge.
|
| IncrementalMarking* incremental_marking() {
|
| return &incremental_marking_;
|
| }
|
|
|