| 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 289356af47f50064d1fb9d7086194c0c0afcbefa..2bb641fd725781dfb2d74cfea4a33a87b281fb09 100644
|
| --- a/src/compiler/x87/instruction-selector-x87.cc
|
| +++ b/src/compiler/x87/instruction-selector-x87.cc
|
| @@ -1012,7 +1012,8 @@ void InstructionSelector::VisitFloat64Abs(Node* node) {
|
| void InstructionSelector::VisitFloat64Log(Node* node) {
|
| X87OperandGenerator g(this);
|
| Emit(kX87PushFloat64, g.NoOutput(), g.Use(node->InputAt(0)));
|
| - Emit(kX87Float64Log, g.DefineAsFixed(node, stX_0), 0, nullptr);
|
| + Emit(kIeee754Float64Log, g.DefineAsFixed(node, stX_0), 0, nullptr)
|
| + ->MarkAsCall();
|
| }
|
|
|
| void InstructionSelector::VisitFloat32Sqrt(Node* node) {
|
|
|