| 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 2d3d4de5785dfa8d3c51a6ca00b2d8a280cbfac7..253697a5b5f95e13a5c5e689de8097ccd6c8314f 100644
|
| --- a/runtime/vm/flow_graph_type_propagator.cc
|
| +++ b/runtime/vm/flow_graph_type_propagator.cc
|
| @@ -996,6 +996,21 @@ CompileType Float32x4ComparisonInstr::ComputeType() const {
|
| }
|
|
|
|
|
| +CompileType Float32x4MinMaxInstr::ComputeType() const {
|
| + return CompileType::FromCid(kFloat32x4Cid);
|
| +}
|
| +
|
| +
|
| +CompileType Float32x4ScaleInstr::ComputeType() const {
|
| + return CompileType::FromCid(kFloat32x4Cid);
|
| +}
|
| +
|
| +
|
| +CompileType Float32x4SqrtInstr::ComputeType() const {
|
| + return CompileType::FromCid(kFloat32x4Cid);
|
| +}
|
| +
|
| +
|
| CompileType MathSqrtInstr::ComputeType() const {
|
| return CompileType::FromCid(kDoubleCid);
|
| }
|
|
|