| Index: src/x87/macro-assembler-x87.cc
|
| diff --git a/src/x87/macro-assembler-x87.cc b/src/x87/macro-assembler-x87.cc
|
| index ac8b6f935b31fd94fdd75d8b38cc311314e54c6b..0353e8ab854138ea682062f3b69c7255eda241dc 100644
|
| --- a/src/x87/macro-assembler-x87.cc
|
| +++ b/src/x87/macro-assembler-x87.cc
|
| @@ -349,8 +349,8 @@ void MacroAssembler::RecordWriteArray(
|
| // Clobber clobbered input registers when running with the debug-code flag
|
| // turned on to provoke errors.
|
| if (emit_debug_code()) {
|
| - mov(value, Immediate(BitCast<int32_t>(kZapValue)));
|
| - mov(index, Immediate(BitCast<int32_t>(kZapValue)));
|
| + mov(value, Immediate(bit_cast<int32_t>(kZapValue)));
|
| + mov(index, Immediate(bit_cast<int32_t>(kZapValue)));
|
| }
|
| }
|
|
|
| @@ -393,8 +393,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, Immediate(BitCast<int32_t>(kZapValue)));
|
| - mov(dst, Immediate(BitCast<int32_t>(kZapValue)));
|
| + mov(value, Immediate(bit_cast<int32_t>(kZapValue)));
|
| + mov(dst, Immediate(bit_cast<int32_t>(kZapValue)));
|
| }
|
| }
|
|
|
| @@ -452,9 +452,9 @@ void MacroAssembler::RecordWriteForMap(
|
| // Clobber clobbered input registers when running with the debug-code flag
|
| // turned on to provoke errors.
|
| if (emit_debug_code()) {
|
| - mov(value, Immediate(BitCast<int32_t>(kZapValue)));
|
| - mov(scratch1, Immediate(BitCast<int32_t>(kZapValue)));
|
| - mov(scratch2, Immediate(BitCast<int32_t>(kZapValue)));
|
| + mov(value, Immediate(bit_cast<int32_t>(kZapValue)));
|
| + mov(scratch1, Immediate(bit_cast<int32_t>(kZapValue)));
|
| + mov(scratch2, Immediate(bit_cast<int32_t>(kZapValue)));
|
| }
|
| }
|
|
|
| @@ -521,8 +521,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, Immediate(BitCast<int32_t>(kZapValue)));
|
| - mov(value, Immediate(BitCast<int32_t>(kZapValue)));
|
| + mov(address, Immediate(bit_cast<int32_t>(kZapValue)));
|
| + mov(value, Immediate(bit_cast<int32_t>(kZapValue)));
|
| }
|
| }
|
|
|
| @@ -2016,7 +2016,7 @@ Operand ApiParameterOperand(int index) {
|
| void MacroAssembler::PrepareCallApiFunction(int argc) {
|
| EnterApiExitFrame(argc);
|
| if (emit_debug_code()) {
|
| - mov(esi, Immediate(BitCast<int32_t>(kZapValue)));
|
| + mov(esi, Immediate(bit_cast<int32_t>(kZapValue)));
|
| }
|
| }
|
|
|
|
|