| Index: runtime/vm/flow_graph_type_propagator.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_type_propagator.cc (revision 30381)
|
| +++ runtime/vm/flow_graph_type_propagator.cc (working copy)
|
| @@ -563,7 +563,7 @@
|
| bool* is_instance) {
|
| ASSERT(is_instance != NULL);
|
| // We cannot give an answer if the given type is malformed or malbounded.
|
| - if (type.IsMalformed() || type.IsMalbounded()) {
|
| + if (type.IsMalformedOrMalbounded()) {
|
| return false;
|
| }
|
|
|
| @@ -578,7 +578,7 @@
|
|
|
| // Consider the compile type of the value.
|
| const AbstractType& compile_type = *ToAbstractType();
|
| - if (compile_type.IsMalformed() || compile_type.IsMalbounded()) {
|
| + if (compile_type.IsMalformedOrMalbounded()) {
|
| return false;
|
| }
|
|
|
|
|