Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index 6878d6a34e7903332caed12030ce9167d385c8b0..408aa96dc6b75e07e321355ed3897ec897b26d02 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -367,19 +367,16 @@ class LInstructionGap: public LGap { |
class LGoto: public LTemplateInstruction<0, 0, 0> { |
public: |
- LGoto(int block_id, bool include_stack_check = false) |
- : block_id_(block_id), include_stack_check_(include_stack_check) { } |
+ explicit LGoto(int block_id) : block_id_(block_id) { } |
DECLARE_CONCRETE_INSTRUCTION(Goto, "goto") |
virtual void PrintDataTo(StringStream* stream); |
virtual bool IsControl() const { return true; } |
int block_id() const { return block_id_; } |
- bool include_stack_check() const { return include_stack_check_; } |
private: |
int block_id_; |
- bool include_stack_check_; |
}; |
@@ -2133,6 +2130,12 @@ class LOsrEntry: public LTemplateInstruction<0, 0, 0> { |
class LStackCheck: public LTemplateInstruction<0, 0, 0> { |
public: |
DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check") |
+ DECLARE_HYDROGEN_ACCESSOR(StackCheck) |
+ |
+ Label* done_label() { return &done_label_; } |
+ |
+ private: |
+ Label done_label_; |
}; |