Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index e9c437ffdff7685212fe082099c650f881b5c0a5..3a4f2f711ca225d58e8ae7551eb4d0e21ced4ead 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -1020,10 +1020,10 @@ class HChange: public HUnaryOperation { |
class HSimulate: public HInstruction { |
public: |
- HSimulate(int ast_id, int pop_count, int environment_height) |
+ HSimulate(int ast_id, int pop_count, int environment_length) |
: ast_id_(ast_id), |
pop_count_(pop_count), |
- environment_height_(environment_height), |
+ environment_length_(environment_length), |
values_(2), |
assigned_indexes_(2) {} |
virtual ~HSimulate() {} |
@@ -1037,7 +1037,7 @@ class HSimulate: public HInstruction { |
ast_id_ = id; |
} |
- int environment_height() const { return environment_height_; } |
+ int environment_length() const { return environment_length_; } |
int pop_count() const { return pop_count_; } |
const ZoneList<HValue*>* values() const { return &values_; } |
int GetAssignedIndexAt(int index) const { |
@@ -1079,7 +1079,7 @@ class HSimulate: public HInstruction { |
} |
int ast_id_; |
int pop_count_; |
- int environment_height_; |
+ int environment_length_; |
ZoneList<HValue*> values_; |
ZoneList<int> assigned_indexes_; |
}; |