Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 7333398176b11d4c035fa41f37a157d6f12b516e..730c1d0dc395e41e48dfd0b6c036ea4b49c10e53 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -1218,7 +1218,7 @@ LInstruction* LChunkBuilder::DoMathTan(HUnaryMathOperation* instr) { |
LInstruction* LChunkBuilder::DoMathExp(HUnaryMathOperation* instr) { |
ASSERT(instr->representation().IsDouble()); |
ASSERT(instr->value()->representation().IsDouble()); |
- LOperand* input = UseTempRegister(instr->value()); |
+ LOperand* input = UseRegister(instr->value()); |
LOperand* temp1 = TempRegister(); |
LOperand* temp2 = TempRegister(); |
LOperand* double_temp = FixedTemp(f6); // Chosen by fair dice roll. |