| Index: runtime/vm/flow_graph.h
|
| diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
|
| index 139aa6f3410b08a3679ff6e3efd1cdf40c82a302..59c0c0d3d49fd267f8546cf0782755abb778c866 100644
|
| --- a/runtime/vm/flow_graph.h
|
| +++ b/runtime/vm/flow_graph.h
|
| @@ -124,7 +124,6 @@ class FlowGraph : public ZoneAllocated {
|
| // Operations on the flow graph.
|
| void ComputeSSA(intptr_t next_virtual_register_number,
|
| GrowableArray<Definition*>* inlining_parameters);
|
| - void ComputeUseLists();
|
|
|
| // Finds natural loops in the flow graph and attaches a list of loop
|
| // body blocks for each loop header.
|
| @@ -138,8 +137,7 @@ class FlowGraph : public ZoneAllocated {
|
| void InvalidateDominatorTree() { invalid_dominator_tree_ = true; }
|
|
|
| #ifdef DEBUG
|
| - // Validation methods for debugging.
|
| - bool ResetUseLists();
|
| + // Verification methods for debugging.
|
| bool VerifyUseLists();
|
| #endif // DEBUG
|
|
|
|
|