| Index: src/x87/lithium-gap-resolver-x87.cc | 
| diff --git a/src/x87/lithium-gap-resolver-x87.cc b/src/x87/lithium-gap-resolver-x87.cc | 
| index e25c78c99370569926601f2d38f8371134a76808..b94e34f2c0c746da91c3af9f04bc605d520ba2f9 100644 | 
| --- a/src/x87/lithium-gap-resolver-x87.cc | 
| +++ b/src/x87/lithium-gap-resolver-x87.cc | 
| @@ -292,7 +292,7 @@ void LGapResolver::EmitMove(int index) { | 
| } | 
| } else if (destination->IsDoubleRegister()) { | 
| double v = cgen_->ToDouble(constant_source); | 
| -      uint64_t int_val = BitCast<uint64_t, double>(v); | 
| +      uint64_t int_val = bit_cast<uint64_t, double>(v); | 
| int32_t lower = static_cast<int32_t>(int_val); | 
| int32_t upper = static_cast<int32_t>(int_val >> kBitsPerInt); | 
| __ push(Immediate(upper)); | 
|  |