Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index c7d702d679c00ecd110223a59692fed162ea10c5..a7a9fd0099c00e074026dd365f4c2fe14639ec16 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -694,6 +694,8 @@ void InstructionSelector::VisitNode(Node* node) { |
return MarkAsFloat64(node), VisitChangeFloat32ToFloat64(node); |
case IrOpcode::kChangeInt32ToFloat64: |
return MarkAsFloat64(node), VisitChangeInt32ToFloat64(node); |
+ case IrOpcode::kRoundInt64ToFloat64: |
+ return MarkAsFloat64(node), VisitRoundInt64ToFloat64(node); |
case IrOpcode::kChangeUint32ToFloat64: |
return MarkAsFloat64(node), VisitChangeUint32ToFloat64(node); |
case IrOpcode::kChangeFloat64ToInt32: |