| Index: src/compiler/x64/code-generator-x64.cc
|
| diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
|
| index 6276726307e5b63f2d1125531be14dd517520501..c4be56d5859b98ec3dffe0fabb7765d0c1c56561 100644
|
| --- a/src/compiler/x64/code-generator-x64.cc
|
| +++ b/src/compiler/x64/code-generator-x64.cc
|
| @@ -1041,6 +1041,15 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ Cvtqsi2sd(i.OutputDoubleRegister(), i.InputOperand(0));
|
| }
|
| break;
|
| + case kSSEUint64ToFloat32:
|
| + if (instr->InputAt(0)->IsRegister()) {
|
| + __ movq(kScratchRegister, i.InputRegister(0));
|
| + } else {
|
| + __ movq(kScratchRegister, i.InputOperand(0));
|
| + }
|
| + __ Cvtqui2ss(i.OutputDoubleRegister(), kScratchRegister,
|
| + i.TempRegister(0));
|
| + break;
|
| case kSSEUint64ToFloat64:
|
| if (instr->InputAt(0)->IsRegister()) {
|
| __ movq(kScratchRegister, i.InputRegister(0));
|
|
|