Index: src/heap.cc |
diff --git a/src/heap.cc b/src/heap.cc |
index ea28747b48229f6dbcb3670d4b8ab892be29a9f5..b11989050bb6ad9799a8b35fdf1ae43696cc83d4 100644 |
--- a/src/heap.cc |
+++ b/src/heap.cc |
@@ -4064,8 +4064,8 @@ bool Heap::ConfigureHeapDefault() { |
void Heap::RecordStats(HeapStats* stats, bool take_snapshot) { |
- *stats->start_marker = 0xDECADE00; |
- *stats->end_marker = 0xDECADE01; |
+ *stats->start_marker = HeapStats::kStartMarker; |
+ *stats->end_marker = HeapStats::kEndMarker; |
*stats->new_space_size = new_space_.Size(); |
*stats->new_space_capacity = new_space_.Capacity(); |
*stats->old_pointer_space_size = old_pointer_space_->Size(); |