| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index e38719379b6fced1a9648bf93a2d7c48a1f8db23..22ba7a9f1619cd3b3b1ab6c9bdbf838c41c139ec 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -1829,6 +1829,11 @@ static HeapObject* EnsureDoubleAligned(Heap* heap, HeapObject* object,
|
| }
|
|
|
|
|
| +HeapObject* Heap::DoubleAlignForDeserialization(HeapObject* object, int size) {
|
| + return EnsureDoubleAligned(this, object, size);
|
| +}
|
| +
|
| +
|
| enum LoggingAndProfiling {
|
| LOGGING_AND_PROFILING_ENABLED,
|
| LOGGING_AND_PROFILING_DISABLED
|
|
|