Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 6faa7813d201429e9f54c02555c4902fa1819046..d3146719f8a49c422964a04b21128301015b1b15 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -2236,19 +2236,16 @@ class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> { |
}; |
-class LTransitionElementsKind: public LTemplateInstruction<0, 1, 2> { |
+class LTransitionElementsKind: public LTemplateInstruction<0, 1, 1> { |
public: |
LTransitionElementsKind(LOperand* object, |
- LOperand* new_map_temp, |
- LOperand* fixed_object_temp) { |
+ LOperand* new_map_temp) { |
inputs_[0] = object; |
temps_[0] = new_map_temp; |
- temps_[1] = fixed_object_temp; |
} |
LOperand* object() { return inputs_[0]; } |
LOperand* new_map_temp() { return temps_[0]; } |
- LOperand* temp() { return temps_[1]; } |
DECLARE_CONCRETE_INSTRUCTION(TransitionElementsKind, |
"transition-elements-kind") |