Commit afa73d39 authored by ager@chromium.org's avatar ager@chromium.org

Fix Win64 build.

TBR=ricow@chromium.org
Review URL: http://codereview.chromium.org/3017024

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5117 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent a36bf8f0
......@@ -8069,9 +8069,9 @@ Result CodeGenerator::EmitNamedStore(Handle<String> name, bool is_contextual) {
__ lea(scratch.reg(), Operand(receiver.reg(), offset));
__ RecordWriteHelper(receiver.reg(), scratch.reg(), value.reg());
if (FLAG_debug_code) {
__ movq(receiver.reg(), Immediate(BitCast<int64_t>(kZapValue)));
__ movq(value.reg(), Immediate(BitCast<int64_t>(kZapValue)));
__ movq(scratch.reg(), Immediate(BitCast<int64_t>(kZapValue)));
__ movq(receiver.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
__ movq(value.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
__ movq(scratch.reg(), BitCast<int64_t>(kZapValue), RelocInfo::NONE);
}
__ bind(&skip_write_barrier);
value.Unuse();
......
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