| Index: src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| diff --git a/src/crankshaft/ppc/lithium-codegen-ppc.cc b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| index c7a5cd1c1c37acf62015bf34919ad94117ad7c24..4bdb85fbedf5d3c51ae61a1fbf46d93c47af3368 100644
|
| --- a/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| +++ b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| @@ -3791,8 +3791,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()));
|
| }
|
|
|
|
|