Index: src/ic/x87/handler-compiler-x87.cc |
diff --git a/src/ic/x87/handler-compiler-x87.cc b/src/ic/x87/handler-compiler-x87.cc |
index ec08b60692b6e00bb12cd955e46d9bab8c42f307..ce5657b35d27dc25d70d1927b71d25ec99c0451d 100644 |
--- a/src/ic/x87/handler-compiler-x87.cc |
+++ b/src/ic/x87/handler-compiler-x87.cc |
@@ -732,9 +732,9 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup( |
// Clobber registers when generating debug-code to provoke errors. |
__ bind(&interceptor_failed); |
if (FLAG_debug_code) { |
- __ mov(receiver(), Immediate(BitCast<int32_t>(kZapValue))); |
- __ mov(holder_reg, Immediate(BitCast<int32_t>(kZapValue))); |
- __ mov(this->name(), Immediate(BitCast<int32_t>(kZapValue))); |
+ __ mov(receiver(), Immediate(bit_cast<int32_t>(kZapValue))); |
+ __ mov(holder_reg, Immediate(bit_cast<int32_t>(kZapValue))); |
+ __ mov(this->name(), Immediate(bit_cast<int32_t>(kZapValue))); |
} |
__ pop(this->name()); |