Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index 7c34bbaf3c184953fa829b80c5c2042db393e62a..180882e21c7959d8b586569bb562da9b98246770 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -91,6 +91,8 @@ class HBasicBlock: public ZoneObject { |
void set_last_instruction_index(int index) { |
last_instruction_index_ = index; |
} |
+ bool is_osr_entry() { return is_osr_entry_; } |
+ void set_osr_entry() { is_osr_entry_ = true; } |
void AttachLoopInformation(); |
void DetachLoopInformation(); |
@@ -193,6 +195,7 @@ class HBasicBlock: public ZoneObject { |
bool is_inline_return_target_; |
bool is_deoptimizing_; |
bool dominates_loop_successors_; |
+ bool is_osr_entry_; |
}; |