Reviewers: Kevin Millikin,

Description:
Second attempt at fixing issue 559.

Please review this at http://codereview.chromium.org/519007

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
   M     src/x64/fast-codegen-x64.cc


Index: src/x64/fast-codegen-x64.cc
===================================================================
--- src/x64/fast-codegen-x64.cc (revision 3522)
+++ 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);
  }



-- 
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to