| Index: src/x64/macro-assembler-x64.cc
|
| diff --git a/src/x64/macro-assembler-x64.cc b/src/x64/macro-assembler-x64.cc
|
| index a11ac1dff6d59e0583a397db8f34a84ff75e5462..8a275a5a1ab944bdf2727b82fa7e68ac5e3a8237 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<int64_t>(kZapValue)));
|
| - movq(index, Immediate(BitCast<int64_t>(kZapValue)));
|
| + movq(value, BitCast<int64_t>(kZapValue), RelocInfo::NONE);
|
| + movq(index, BitCast<int64_t>(kZapValue), RelocInfo::NONE);
|
| }
|
| }
|
|
|
|
|