| Index: runtime/vm/flow_graph_type_propagator.cc
|
| diff --git a/runtime/vm/flow_graph_type_propagator.cc b/runtime/vm/flow_graph_type_propagator.cc
|
| index 34cef087a342dbca0e83075fb5350947a72aa247..2e5abeaf6b3866811d4610b3a320c08f224cbb0b 100644
|
| --- a/runtime/vm/flow_graph_type_propagator.cc
|
| +++ b/runtime/vm/flow_graph_type_propagator.cc
|
| @@ -977,6 +977,16 @@ CompileType BoxDoubleInstr::ComputeType() const {
|
| }
|
|
|
|
|
| +CompileType UnboxFloat32x4Instr::ComputeType() const {
|
| + return CompileType::FromCid(kFloat32x4Cid);
|
| +}
|
| +
|
| +
|
| +CompileType BoxFloat32x4Instr::ComputeType() const {
|
| + return CompileType::FromCid(kFloat32x4Cid);
|
| +}
|
| +
|
| +
|
| CompileType SmiToDoubleInstr::ComputeType() const {
|
| return CompileType::FromCid(kDoubleCid);
|
| }
|
|
|