| Index: runtime/vm/flow_graph_optimizer.h
|
| diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h
|
| index d215542f5918ce3d1c04397415d08fc8e8482389..ad5968dcc3e9a3af86f05cfc1aeae036e595f1f7 100644
|
| --- a/runtime/vm/flow_graph_optimizer.h
|
| +++ b/runtime/vm/flow_graph_optimizer.h
|
| @@ -30,6 +30,8 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
|
|
| void PropagateSminess();
|
|
|
| + void InferSmiRanges();
|
| +
|
| virtual void VisitStaticCall(StaticCallInstr* instr);
|
| virtual void VisitInstanceCall(InstanceCallInstr* instr);
|
| virtual void VisitRelationalOp(RelationalOpInstr* instr);
|
| @@ -137,7 +139,7 @@ class LICM : public AllStatic {
|
| static void TryHoistCheckSmiThroughPhi(ForwardInstructionIterator* it,
|
| BlockEntryInstr* header,
|
| BlockEntryInstr* pre_header,
|
| - Instruction* current);
|
| + CheckSmiInstr* current);
|
| };
|
|
|
|
|
|
|