Index: src/arm64/macro-assembler-arm64.cc |
diff --git a/src/arm64/macro-assembler-arm64.cc b/src/arm64/macro-assembler-arm64.cc |
index d4f74d52e6e1b30921aab6544b694d1c34bcb60f..b7c3db077a9d381207bb209b8f790d8e9b691b55 100644 |
--- a/src/arm64/macro-assembler-arm64.cc |
+++ b/src/arm64/macro-assembler-arm64.cc |
@@ -4442,8 +4442,8 @@ void MacroAssembler::RecordWriteField( |
// Clobber clobbered input registers when running with the debug-code flag |
// turned on to provoke errors. |
if (emit_debug_code()) { |
- Mov(value, Operand(BitCast<int64_t>(kZapValue + 4))); |
- Mov(scratch, Operand(BitCast<int64_t>(kZapValue + 8))); |
+ Mov(value, Operand(bit_cast<int64_t>(kZapValue + 4))); |
+ Mov(scratch, Operand(bit_cast<int64_t>(kZapValue + 8))); |
} |
} |
@@ -4514,8 +4514,8 @@ void MacroAssembler::RecordWriteForMap(Register object, |
// Clobber clobbered registers when running with the debug-code flag |
// turned on to provoke errors. |
if (emit_debug_code()) { |
- Mov(dst, Operand(BitCast<int64_t>(kZapValue + 12))); |
- Mov(map, Operand(BitCast<int64_t>(kZapValue + 16))); |
+ Mov(dst, Operand(bit_cast<int64_t>(kZapValue + 12))); |
+ Mov(map, Operand(bit_cast<int64_t>(kZapValue + 16))); |
} |
} |
@@ -4587,8 +4587,8 @@ void MacroAssembler::RecordWrite( |
// Clobber clobbered registers when running with the debug-code flag |
// turned on to provoke errors. |
if (emit_debug_code()) { |
- Mov(address, Operand(BitCast<int64_t>(kZapValue + 12))); |
- Mov(value, Operand(BitCast<int64_t>(kZapValue + 16))); |
+ Mov(address, Operand(bit_cast<int64_t>(kZapValue + 12))); |
+ Mov(value, Operand(bit_cast<int64_t>(kZapValue + 16))); |
} |
} |