Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index a8ca620d3fa45bdd09d7006dc8902a98244c3f11..295c8056a79890a5cb73866f088789ac71ab20db 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -688,17 +688,15 @@ class LMathFloorOfDiv V8_FINAL : public LTemplateInstruction<1, 2, 1> { |
}; |
-class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 1> { |
+class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 0> { |
public: |
- LMulI(LOperand* left, LOperand* right, LOperand* temp) { |
+ LMulI(LOperand* left, LOperand* right) { |
inputs_[0] = left; |
inputs_[1] = right; |
- temps_[0] = temp; |
} |
LOperand* left() { return inputs_[0]; } |
LOperand* right() { return inputs_[1]; } |
- LOperand* temp() { return temps_[0]; } |
DECLARE_CONCRETE_INSTRUCTION(MulI, "mul-i") |
DECLARE_HYDROGEN_ACCESSOR(Mul) |