Index: src/heap/mark-compact.h |
diff --git a/src/heap/mark-compact.h b/src/heap/mark-compact.h |
index 015ac31154498343064d55c9347c1a9bdb109a0f..a5a5f02ee7cb4a0db6306b963d7fb36e46bd1896 100644 |
--- a/src/heap/mark-compact.h |
+++ b/src/heap/mark-compact.h |
@@ -330,6 +330,7 @@ class SlotsBuffer { |
enum SlotType { |
EMBEDDED_OBJECT_SLOT, |
+ OBJECT_SLOT, |
RELOCATED_CODE_OBJECT, |
CELL_TARGET_SLOT, |
CODE_TARGET_SLOT, |
@@ -343,6 +344,8 @@ class SlotsBuffer { |
switch (type) { |
case EMBEDDED_OBJECT_SLOT: |
return "EMBEDDED_OBJECT_SLOT"; |
+ case OBJECT_SLOT: |
+ return "OBJECT_SLOT"; |
case RELOCATED_CODE_OBJECT: |
return "RELOCATED_CODE_OBJECT"; |
case CELL_TARGET_SLOT: |