Index: runtime/vm/flow_graph.h |
diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h |
index 5cfd9310d7724f5df5d60d820db272fcd7217616..5e3cb94b44c583c909670284b3b3ffccabbe6d49 100644 |
--- a/runtime/vm/flow_graph.h |
+++ b/runtime/vm/flow_graph.h |
@@ -133,6 +133,11 @@ class FlowGraph : public ZoneAllocated { |
Instruction* current, |
Instruction* replacement); |
+ Instruction* GetCheckClass(Definition* to_check, |
Vyacheslav Egorov (Google)
2017/05/01 12:21:24
I think this name is confusing. Maybe MakeCheckCla
erikcorry
2017/05/05 15:15:51
Changed to CreateCheckClass
|
+ const CallTargets& targets, |
+ intptr_t deopt_id, |
+ TokenPosition token_pos); |
+ |
intptr_t current_ssa_temp_index() const { return current_ssa_temp_index_; } |
void set_current_ssa_temp_index(intptr_t index) { |
current_ssa_temp_index_ = index; |