Index: src/crankshaft/s390/lithium-s390.h |
diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h |
index 407d45dd0910b8986b33e32513831e73083a2ac7..e8cb3bca5fb39b1af1a6e956c84f9304487de716 100644 |
--- a/src/crankshaft/s390/lithium-s390.h |
+++ b/src/crankshaft/s390/lithium-s390.h |
@@ -836,21 +836,11 @@ class LMathClz32 final : public LTemplateInstruction<1, 1, 0> { |
DECLARE_CONCRETE_INSTRUCTION(MathClz32, "math-clz32") |
}; |
-class LMathExp final : public LTemplateInstruction<1, 1, 3> { |
+class LMathExp final : public LTemplateInstruction<1, 1, 0> { |
public: |
- LMathExp(LOperand* value, LOperand* double_temp, LOperand* temp1, |
- LOperand* temp2) { |
- inputs_[0] = value; |
- temps_[0] = temp1; |
- temps_[1] = temp2; |
- temps_[2] = double_temp; |
- ExternalReference::InitializeMathExpData(); |
- } |
+ explicit LMathExp(LOperand* value) { inputs_[0] = value; } |
LOperand* value() { return inputs_[0]; } |
- LOperand* temp1() { return temps_[0]; } |
- LOperand* temp2() { return temps_[1]; } |
- LOperand* double_temp() { return temps_[2]; } |
DECLARE_CONCRETE_INSTRUCTION(MathExp, "math-exp") |
}; |