| Index: runtime/vm/flow_graph_type_propagator.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_type_propagator.cc (revision 29797)
|
| +++ runtime/vm/flow_graph_type_propagator.cc (working copy)
|
| @@ -810,8 +810,8 @@
|
|
|
|
|
| CompileType EqualityCompareInstr::ComputeType() const {
|
| - return IsInlinedNumericComparison() ? CompileType::Bool()
|
| - : CompileType::Dynamic();
|
| + // Used for numeric comparisons only.
|
| + return CompileType::Bool();
|
| }
|
|
|
|
|
| @@ -821,6 +821,7 @@
|
|
|
|
|
| CompileType RelationalOpInstr::ComputeType() const {
|
| + // Used for numeric comparisons only.
|
| return CompileType::Bool();
|
| }
|
|
|
|
|