summaryrefslogtreecommitdiff
path: root/deps/v8/src/hydrogen-instructions.h
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2014-04-01 11:46:28 -0700
committerTrevor Norris <trev.norris@gmail.com>2014-04-01 11:46:28 -0700
commit8d6fa72d9720963387b73e0770eeec4dd0ba6dce (patch)
tree86b419d65b09d0b2b3e50a67c5f19dcbba268117 /deps/v8/src/hydrogen-instructions.h
parent490d5ab7808aedb998d1f4f933bf3de748758f62 (diff)
downloadnode-new-8d6fa72d9720963387b73e0770eeec4dd0ba6dce.tar.gz
v8: upgrade to 3.24.35.22
Diffstat (limited to 'deps/v8/src/hydrogen-instructions.h')
-rw-r--r--deps/v8/src/hydrogen-instructions.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/src/hydrogen-instructions.h b/deps/v8/src/hydrogen-instructions.h
index f897e91bb3..a62f3cebf2 100644
--- a/deps/v8/src/hydrogen-instructions.h
+++ b/deps/v8/src/hydrogen-instructions.h
@@ -1799,7 +1799,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;
@@ -1882,7 +1883,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_;