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 e729b04461e2f2d0a15e88fcb5e018c8f0a6ef97..524c5114a59d475016abff8bada5349d7e56db29 100644 |
--- a/src/compiler/x87/instruction-selector-x87.cc |
+++ b/src/compiler/x87/instruction-selector-x87.cc |
@@ -1087,6 +1087,14 @@ void InstructionSelector::VisitFloat32Neg(Node* node) { UNREACHABLE(); } |
void InstructionSelector::VisitFloat64Neg(Node* node) { UNREACHABLE(); } |
+void InstructionSelector::VisitFloat64Ieee754Binop(Node* node, |
+ InstructionCode opcode) { |
+ X87OperandGenerator g(this); |
+ Emit(kX87PushFloat64, g.NoOutput(), g.Use(node->InputAt(0))); |
+ Emit(kX87PushFloat64, g.NoOutput(), g.Use(node->InputAt(1))); |
+ Emit(opcode, g.DefineAsFixed(node, stX_0), 0, nullptr)->MarkAsCall(); |
+} |
+ |
void InstructionSelector::VisitFloat64Ieee754Unop(Node* node, |
InstructionCode opcode) { |
X87OperandGenerator g(this); |