| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 11414)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -755,7 +755,7 @@
|
|
|
|
|
| RawAbstractType* AssertBooleanComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| @@ -812,7 +812,7 @@
|
|
|
|
|
| RawAbstractType* StrictCompareComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| @@ -821,10 +821,10 @@
|
| if ((receiver_class_id() == kSmiCid) ||
|
| (receiver_class_id() == kDoubleCid) ||
|
| (receiver_class_id() == kNumberCid)) {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
| if (HasICData() && ic_data()->AllTargetsHaveSameOwner(kInstanceCid)) {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
| return Type::DynamicType();
|
| }
|
| @@ -849,7 +849,7 @@
|
| (operands_class_id() == kDoubleCid) ||
|
| (operands_class_id() == kNumberCid)) {
|
| // Known/library relational ops that are guaranteed to return Boolean.
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
| return Type::DynamicType();
|
| }
|
| @@ -911,12 +911,12 @@
|
|
|
|
|
| RawAbstractType* BooleanNegateComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| RawAbstractType* InstanceOfComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
|
|