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..e59f1b449b51574a59686478e2b5145c6156069e 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::VisitRoundInt64ToFloat64(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))); |