Index: src/hydrogen-instructions.h |
=================================================================== |
--- src/hydrogen-instructions.h (revision 7493) |
+++ src/hydrogen-instructions.h (working copy) |
@@ -974,10 +974,9 @@ |
class HSimulate: public HInstruction { |
public: |
- HSimulate(int ast_id, int pop_count, int environment_length) |
+ HSimulate(int ast_id, int pop_count) |
: ast_id_(ast_id), |
pop_count_(pop_count), |
- environment_length_(environment_length), |
values_(2), |
assigned_indexes_(2) {} |
virtual ~HSimulate() {} |
@@ -991,7 +990,6 @@ |
ast_id_ = id; |
} |
- 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 { |
@@ -1037,7 +1035,6 @@ |
} |
int ast_id_; |
int pop_count_; |
- int environment_length_; |
ZoneList<HValue*> values_; |
ZoneList<int> assigned_indexes_; |
}; |