| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index 5bc2c30747e4757fd536221d3e6485e94cfb925c..f4cbe8290d6afe9a1e8ce893b858ed1c4d069061 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -1715,7 +1715,7 @@ void LCodeGen::DoConstantS(LConstantS* instr) {
|
|
|
| void LCodeGen::DoConstantD(LConstantD* instr) {
|
| double v = instr->value();
|
| - 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));
|
| DCHECK(instr->result()->IsDoubleRegister());
|
|
|