Index: src/compiler/mips/instruction-selector-mips.cc |
diff --git a/src/compiler/mips/instruction-selector-mips.cc b/src/compiler/mips/instruction-selector-mips.cc |
index 92ef9d426cd7c2151e70cfeb31391fac998c96f4..cae9da8c894ceccf0db29ad87d0f0fbbd7a2bfe7 100644 |
--- a/src/compiler/mips/instruction-selector-mips.cc |
+++ b/src/compiler/mips/instruction-selector-mips.cc |
@@ -878,7 +878,8 @@ void InstructionSelector::VisitFloat64Abs(Node* node) { |
void InstructionSelector::VisitFloat64Log(Node* node) { |
MipsOperandGenerator g(this); |
- Emit(kMipsLogD, g.DefineAsFixed(node, f0), g.UseFixed(node->InputAt(0), f12)) |
+ Emit(kIeee754Float64Log, g.DefineAsFixed(node, f0), |
+ g.UseFixed(node->InputAt(0), f12)) |
->MarkAsCall(); |
} |