| Index: runtime/vm/flow_graph_optimizer.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_optimizer.h (revision 10475)
|
| +++ runtime/vm/flow_graph_optimizer.h (working copy)
|
| @@ -76,9 +76,8 @@
|
| FlowGraphTypePropagator(const ParsedFunction& parsed_function,
|
| const GrowableArray<BlockEntryInstr*>& blocks)
|
| : FlowGraphVisitor(blocks),
|
| - parsed_function_(parsed_function),
|
| - still_changing_(false) { }
|
| - virtual ~FlowGraphTypePropagator() { }
|
| + parsed_function_(parsed_function) { }
|
| + virtual ~FlowGraphTypePropagator() {}
|
|
|
| const ParsedFunction& parsed_function() const { return parsed_function_; }
|
|
|
| @@ -87,15 +86,10 @@
|
| virtual void VisitAssertAssignable(AssertAssignableComp* comp,
|
| BindInstr* instr);
|
|
|
| - virtual void VisitGraphEntry(GraphEntryInstr* graph_entry);
|
| - virtual void VisitJoinEntry(JoinEntryInstr* join_entry);
|
| - virtual void VisitBind(BindInstr* bind);
|
| - virtual void VisitPhi(PhiInstr* phi);
|
| - virtual void VisitParameter(ParameterInstr* param);
|
| + virtual void VisitBind(BindInstr* instr);
|
|
|
| private:
|
| const ParsedFunction& parsed_function_;
|
| - bool still_changing_;
|
| DISALLOW_COPY_AND_ASSIGN(FlowGraphTypePropagator);
|
| };
|
|
|
|
|