| Index: runtime/vm/flow_graph_builder.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_builder.h (revision 27672)
|
| +++ runtime/vm/flow_graph_builder.h (working copy)
|
| @@ -105,7 +105,6 @@
|
| FlowGraphBuilder(ParsedFunction* parsed_function,
|
| const Array& ic_data_array,
|
| InlineExitCollector* exit_collector,
|
| - GrowableArray<const Field*>* guarded_fields,
|
| intptr_t osr_id);
|
|
|
| FlowGraph* BuildGraph();
|
| @@ -148,12 +147,6 @@
|
| bool IsInlining() const { return (exit_collector_ != NULL); }
|
| InlineExitCollector* exit_collector() const { return exit_collector_; }
|
|
|
| - GrowableArray<const Field*>* guarded_fields() const {
|
| - return guarded_fields_;
|
| - }
|
| -
|
| - void AddToGuardedFields(const Field& field) const;
|
| -
|
| intptr_t args_pushed() const { return args_pushed_; }
|
| void add_args_pushed(intptr_t n) { args_pushed_ += n; }
|
|
|
| @@ -176,7 +169,6 @@
|
| const intptr_t num_non_copied_params_;
|
| const intptr_t num_stack_locals_; // Does not include any parameters.
|
| InlineExitCollector* const exit_collector_;
|
| - GrowableArray<const Field*>* guarded_fields_;
|
|
|
| intptr_t last_used_block_id_;
|
| intptr_t context_level_;
|
|
|