Index: src/compiler/x87/instruction-selector-x87.cc |
diff --git a/src/compiler/x87/instruction-selector-x87.cc b/src/compiler/x87/instruction-selector-x87.cc |
index 514bf3be0e71421b375e773b7d7e8210f01e76cd..0ba63ed9b10a7d4c3bc14ef4f0ffba78aaf72569 100644 |
--- a/src/compiler/x87/instruction-selector-x87.cc |
+++ b/src/compiler/x87/instruction-selector-x87.cc |
@@ -820,6 +820,10 @@ void InstructionSelector::VisitChangeFloat64ToUint32(Node* node) { |
Emit(kX87Float64ToUint32, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
} |
+void InstructionSelector::VisitTruncateFloat64ToUint32(Node* node) { |
+ X87OperandGenerator g(this); |
+ Emit(kX87Float64ToUint32, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
+} |
void InstructionSelector::VisitTruncateFloat64ToFloat32(Node* node) { |
X87OperandGenerator g(this); |