| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 11354)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -745,7 +745,7 @@
|
|
|
|
|
| RawAbstractType* AssertBooleanComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| @@ -802,7 +802,7 @@
|
|
|
|
|
| RawAbstractType* StrictCompareComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| @@ -811,10 +811,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();
|
| }
|
| @@ -839,7 +839,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();
|
| }
|
| @@ -901,12 +901,12 @@
|
|
|
|
|
| RawAbstractType* BooleanNegateComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
| RawAbstractType* InstanceOfComp::CompileType() const {
|
| - return Type::BoolInterface();
|
| + return Type::BoolType();
|
| }
|
|
|
|
|
|
|