Index: src/crankshaft/s390/lithium-s390.h |
diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h |
index fd8b1324bdf7fe3fb686cbec0e17dfbc55ea3a21..b6a161411d9154cdd5eef42ea4fa6e82158ce1fe 100644 |
--- a/src/crankshaft/s390/lithium-s390.h |
+++ b/src/crankshaft/s390/lithium-s390.h |
@@ -1945,15 +1945,17 @@ class LTransitionElementsKind final : public LTemplateInstruction<0, 2, 1> { |
ElementsKind to_kind() { return hydrogen()->to_kind(); } |
}; |
-class LTrapAllocationMemento final : public LTemplateInstruction<0, 1, 1> { |
+class LTrapAllocationMemento final : public LTemplateInstruction<0, 1, 2> { |
public: |
- LTrapAllocationMemento(LOperand* object, LOperand* temp) { |
+ LTrapAllocationMemento(LOperand* object, LOperand* temp1, LOperand* temp2) { |
inputs_[0] = object; |
- temps_[0] = temp; |
+ temps_[0] = temp1; |
+ temps_[1] = temp2; |
} |
LOperand* object() { return inputs_[0]; } |
- LOperand* temp() { return temps_[0]; } |
+ LOperand* temp1() { return temps_[0]; } |
+ LOperand* temp2() { return temps_[1]; } |
DECLARE_CONCRETE_INSTRUCTION(TrapAllocationMemento, "trap-allocation-memento") |
}; |