Chromium Code Reviews| Index: runtime/vm/flow_graph.h |
| diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h |
| index cf62e82dde8dcb834b4dd0083252702b77355f89..e7428509d27b2a1409a6c9caa83b52c329c5b3fa 100644 |
| --- a/runtime/vm/flow_graph.h |
| +++ b/runtime/vm/flow_graph.h |
| @@ -144,6 +144,12 @@ class FlowGraph : public ZoneAllocated { |
| return BlockIterator(postorder()); |
| } |
| + void EnsureSSATempIndex(Definition* defn, Definition* replacement); |
| + |
| + void ReplaceCurrentInstruction(ForwardInstructionIterator* iterator, |
| + Instruction* current, |
|
Vyacheslav Egorov (Google)
2016/02/08 16:55:47
indentation.
Florian Schneider
2016/02/08 16:58:01
Done.
|
| + Instruction* replacement); |
| + |
| 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; |