From bbe896a35c40fcd38a4dfea8b8c3dc6fdc194b49 Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Mon, 17 Oct 2011 11:41:34 +0000 Subject: [PATCH] Fixing compile error on win64. R=jkummerow@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/8317001 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9656 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/x64/macro-assembler-x64.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x64/macro-assembler-x64.cc b/src/x64/macro-assembler-x64.cc index a11ac1d..8a275a5 100644 --- a/src/x64/macro-assembler-x64.cc +++ b/src/x64/macro-assembler-x64.cc @@ -354,8 +354,8 @@ void MacroAssembler::RecordWriteArray(Register object, // Clobber clobbered input registers when running with the debug-code flag // turned on to provoke errors. if (emit_debug_code()) { - movq(value, Immediate(BitCast(kZapValue))); - movq(index, Immediate(BitCast(kZapValue))); + movq(value, BitCast(kZapValue), RelocInfo::NONE); + movq(index, BitCast(kZapValue), RelocInfo::NONE); } } -- 2.7.4