Chromium Code Reviews| Index: runtime/vm/object.cc |
| =================================================================== |
| --- runtime/vm/object.cc (revision 27236) |
| +++ runtime/vm/object.cc (working copy) |
| @@ -4181,10 +4181,7 @@ |
| bool Function::IsInlineable() const { |
| - // '==' call is handled specially. |
| - return InlinableBit::decode(raw_ptr()->kind_tag_) && |
| - HasCode() && |
| - name() != Symbols::EqualOperator().raw(); |
| + return InlinableBit::decode(raw_ptr()->kind_tag_) && HasCode(); |
| } |