| Index: runtime/vm/flow_graph_optimizer.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_optimizer.cc (revision 32446)
|
| +++ runtime/vm/flow_graph_optimizer.cc (working copy)
|
| @@ -3357,8 +3357,8 @@
|
| // arguments.
|
| const intptr_t num_type_params = type_class.NumTypeParameters();
|
| const intptr_t from_index = num_type_args - num_type_params;
|
| - const AbstractTypeArguments& type_arguments =
|
| - AbstractTypeArguments::Handle(type.arguments());
|
| + const TypeArguments& type_arguments =
|
| + TypeArguments::Handle(type.arguments());
|
| const bool is_raw_type = type_arguments.IsNull() ||
|
| type_arguments.IsRaw(from_index, num_type_params);
|
| if (!is_raw_type) {
|
| @@ -7116,12 +7116,6 @@
|
| }
|
|
|
|
|
| -void ConstantPropagator::VisitAllocateObjectWithBoundsCheck(
|
| - AllocateObjectWithBoundsCheckInstr* instr) {
|
| - SetValue(instr, non_constant_);
|
| -}
|
| -
|
| -
|
| void ConstantPropagator::VisitLoadUntagged(LoadUntaggedInstr* instr) {
|
| SetValue(instr, non_constant_);
|
| }
|
|
|