| Index: runtime/vm/flow_graph_type_propagator.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_type_propagator.cc (revision 38897)
|
| +++ runtime/vm/flow_graph_type_propagator.cc (working copy)
|
| @@ -863,6 +863,13 @@
|
| }
|
|
|
|
|
| +CompileType AllocateUninitializedContextInstr::ComputeType() const {
|
| + return CompileType(CompileType::kNonNullable,
|
| + kContextCid,
|
| + &AbstractType::ZoneHandle(Type::DynamicType()));
|
| +}
|
| +
|
| +
|
| CompileType StaticCallInstr::ComputeType() const {
|
| if (result_cid_ != kDynamicCid) {
|
| return CompileType::FromCid(result_cid_);
|
|
|