| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 31949)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -408,6 +408,11 @@
|
|
|
|
|
| bool MethodRecognizer::AlwaysInline(const Function& function) {
|
| + if (function.IsImplicitGetterFunction() || function.IsGetterFunction() ||
|
| + function.IsImplicitSetterFunction() || function.IsSetterFunction()) {
|
| + return true;
|
| + }
|
| +
|
| const Class& function_class = Class::Handle(function.Owner());
|
| const Library& lib = Library::Handle(function_class.library());
|
| if (!IsRecognizedLibrary(lib)) {
|
|
|