| Index: src/compiler/x64/instruction-selector-x64.cc
|
| diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc
|
| index d2b5f7685ae3b4c67a25ea0677ad046ca9edd649..d729e512859617a9c39b887b65eab57c771deeea 100644
|
| --- a/src/compiler/x64/instruction-selector-x64.cc
|
| +++ b/src/compiler/x64/instruction-selector-x64.cc
|
| @@ -775,6 +775,12 @@ void InstructionSelector::VisitChangeInt32ToFloat64(Node* node) {
|
| }
|
|
|
|
|
| +void InstructionSelector::VisitChangeInt64ToFloat64(Node* node) {
|
| + X64OperandGenerator g(this);
|
| + Emit(kSSEInt64ToFloat64, g.DefineAsRegister(node), g.Use(node->InputAt(0)));
|
| +}
|
| +
|
| +
|
| void InstructionSelector::VisitChangeUint32ToFloat64(Node* node) {
|
| X64OperandGenerator g(this);
|
| Emit(kSSEUint32ToFloat64, g.DefineAsRegister(node), g.Use(node->InputAt(0)));
|
|
|