Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index f741f292e8b1f0bf87591fc2c9dafb9e12c5bb78..b568d215970f45f16b842ed910d661115003f825 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -4693,6 +4693,14 @@ class HParameter: public HTemplateInstruction<0> { |
set_representation(Representation::Tagged()); |
} |
+ explicit HParameter(unsigned index, |
+ ParameterKind kind, |
+ Representation r) |
+ : index_(index), |
+ kind_(kind) { |
+ set_representation(r); |
+ } |
+ |
unsigned index() const { return index_; } |
ParameterKind kind() const { return kind_; } |