Index: src/x64/fast-codegen-x64.cc |
=================================================================== |
--- src/x64/fast-codegen-x64.cc (revision 3523) |
+++ src/x64/fast-codegen-x64.cc (working copy) |
@@ -1678,7 +1678,7 @@ |
void FastCodeGenerator::StoreToFrameField(int frame_offset, Register value) { |
- ASSERT_EQ(POINTER_SIZE_ALIGN(frame_offset), frame_offset); |
+ ASSERT(IsAligned(frame_offset, kPointerSize)); |
__ movq(Operand(rbp, frame_offset), value); |
} |