Index: src/heap.cc |
diff --git a/src/heap.cc b/src/heap.cc |
index 1a80d64784c329875f07648b262be0c817b45872..cf7a0463f411ff393ab595e5a457b30bbb5692aa 100644 |
--- a/src/heap.cc |
+++ b/src/heap.cc |
@@ -497,8 +497,8 @@ void Heap::PostGarbageCollectionProcessing() { |
DisableAssertNoAllocation allow_allocation; |
GlobalHandles::PostGarbageCollectionProcessing(); |
} |
- // Update flat string readers. |
- FlatStringReader::PostGarbageCollectionProcessing(); |
+ // Update relocatables. |
+ Relocatable::PostGarbageCollectionProcessing(); |
} |
@@ -3088,6 +3088,8 @@ void Heap::IterateStrongRoots(ObjectVisitor* v) { |
SYNCHRONIZE_TAG("bootstrapper"); |
Top::Iterate(v); |
SYNCHRONIZE_TAG("top"); |
+ Relocatable::Iterate(v); |
+ SYNCHRONIZE_TAG("relocatable"); |
#ifdef ENABLE_DEBUGGER_SUPPORT |
Debug::Iterate(v); |