| Index: runtime/vm/flow_graph_inliner.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_inliner.cc (revision 23328)
|
| +++ runtime/vm/flow_graph_inliner.cc (working copy)
|
| @@ -994,6 +994,9 @@
|
|
|
|
|
| bool PolymorphicInliner::TryInlining(const Function& target) {
|
| + if (!target.is_optimizable()) {
|
| + return false;
|
| + }
|
| GrowableArray<Value*> arguments(call_->ArgumentCount());
|
| for (int i = 0; i < call_->ArgumentCount(); ++i) {
|
| arguments.Add(call_->PushArgumentAt(i)->value());
|
|
|