Commit 09805c69 authored by kasperl@chromium.org's avatar kasperl@chromium.org

Land http://codereview.chromium.org/509029 (slightly simplified).

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3522 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f7ef8800
......@@ -1678,8 +1678,7 @@ Register FastCodeGenerator::context_register() { return rsi; }
void FastCodeGenerator::StoreToFrameField(int frame_offset, Register value) {
ASSERT_EQ(POINTER_SIZE_ALIGN(frame_offset),
static_cast<intptr_t>(frame_offset));
ASSERT_EQ(POINTER_SIZE_ALIGN(frame_offset), frame_offset);
__ movq(Operand(rbp, frame_offset), value);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment