| Index: src/x64/macro-assembler-x64.cc
|
| diff --git a/src/x64/macro-assembler-x64.cc b/src/x64/macro-assembler-x64.cc
|
| index b6a1d34d6a5cbfc8af1a0e2dcfe1e0015860891e..c7e977bfcbd5a747f4c1cfcc98b2296d2630e530 100644
|
| --- a/src/x64/macro-assembler-x64.cc
|
| +++ b/src/x64/macro-assembler-x64.cc
|
| @@ -3821,7 +3821,7 @@ void MacroAssembler::Allocate(int object_size,
|
| LoadAllocationTopHelper(result, scratch, flags);
|
|
|
| // Align the next allocation. Storing the filler map without checking top is
|
| - // always safe because the limit of the heap is always aligned.
|
| + // safe in new-space because the limit of the heap is aligned there.
|
| if (((flags & DOUBLE_ALIGNMENT) != 0) && FLAG_debug_code) {
|
| testq(result, Immediate(kDoubleAlignmentMask));
|
| Check(zero, "Allocation is not double aligned");
|
| @@ -3888,7 +3888,7 @@ void MacroAssembler::Allocate(int header_size,
|
| LoadAllocationTopHelper(result, scratch, flags);
|
|
|
| // Align the next allocation. Storing the filler map without checking top is
|
| - // always safe because the limit of the heap is always aligned.
|
| + // safe in new-space because the limit of the heap is aligned there.
|
| if (((flags & DOUBLE_ALIGNMENT) != 0) && FLAG_debug_code) {
|
| testq(result, Immediate(kDoubleAlignmentMask));
|
| Check(zero, "Allocation is not double aligned");
|
|
|