| Index: src/crankshaft/arm/lithium-codegen-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-codegen-arm.cc b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| index 4fd039554cefe87d114ec936a42ee953f16bee4b..4891eca9f996d77ee7610d03f3ce0ef191331901 100644
|
| --- a/src/crankshaft/arm/lithium-codegen-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| @@ -3557,8 +3557,7 @@ void LCodeGen::DoMathExp(LMathExp* instr) {
|
| void LCodeGen::DoMathLog(LMathLog* instr) {
|
| __ PrepareCallCFunction(0, 1, scratch0());
|
| __ MovToFloatParameter(ToDoubleRegister(instr->value()));
|
| - __ CallCFunction(ExternalReference::math_log_double_function(isolate()),
|
| - 0, 1);
|
| + __ CallCFunction(ExternalReference::ieee754_log_function(isolate()), 0, 1);
|
| __ MovFromFloatResult(ToDoubleRegister(instr->result()));
|
| }
|
|
|
|
|