| Index: src/compiler/ia32/code-generator-ia32.cc
|
| diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc
|
| index 54eb27e93cd3cd0e67116ea50765656a7623ef03..3a3fd795d8d38cd164fc68e7f6129265548d05f5 100644
|
| --- a/src/compiler/ia32/code-generator-ia32.cc
|
| +++ b/src/compiler/ia32/code-generator-ia32.cc
|
| @@ -847,7 +847,7 @@ void CodeGenerator::AssembleMove(InstructionOperand* source,
|
| __ mov(dst, g.ToImmediate(source));
|
| } else {
|
| double v = g.ToDouble(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);
|
| if (destination->IsDoubleRegister()) {
|
|
|