Chromium Code Reviews| Index: src/arm/lithium-arm.cc |
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
| index 5a1d55e791c8f5a62ff414bf63036cdaa2c8cbd5..58c4b90cde64d2e8610c83a441dfa63469bab545 100644 |
| --- a/src/arm/lithium-arm.cc |
| +++ b/src/arm/lithium-arm.cc |
| @@ -1224,9 +1224,8 @@ LInstruction* LChunkBuilder::DoMathAbs(HUnaryMathOperation* instr) { |
| LInstruction* LChunkBuilder::DoMathLog(HUnaryMathOperation* instr) { |
| - LOperand* input = UseFixedDouble(instr->value(), d2); |
| - LMathLog* result = new(zone()) LMathLog(input); |
| - return MarkAsCall(DefineFixedDouble(result, d2), instr); |
| + LOperand* input = UseFixedDouble(instr->value(), d0); |
| + return DefineAsRegister(new(zone()) LMathLog(input)); |
|
m.m.capewell
2013/12/16 11:44:54
Should this be MarkAsCall()? I can't see how calle
Sven Panne
2013/12/16 13:30:28
Good point, this problem is in the other platform
|
| } |