| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index 25f0419289a5d687d79f1cee428ae00aed50b724..158e4c103ad4f105979d6eb5562f6b2563c56bd9 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -1802,7 +1802,8 @@ class HSimulate V8_FINAL : public HInstruction {
|
| values_(2, zone),
|
| assigned_indexes_(2, zone),
|
| zone_(zone),
|
| - removable_(removable) {}
|
| + removable_(removable),
|
| + done_with_replay_(false) {}
|
| ~HSimulate() {}
|
|
|
| virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| @@ -1885,7 +1886,8 @@ class HSimulate V8_FINAL : public HInstruction {
|
| ZoneList<HValue*> values_;
|
| ZoneList<int> assigned_indexes_;
|
| Zone* zone_;
|
| - RemovableSimulate removable_;
|
| + RemovableSimulate removable_ : 2;
|
| + bool done_with_replay_ : 1;
|
|
|
| #ifdef DEBUG
|
| Handle<JSFunction> closure_;
|
|
|