Chromium Code Reviews| Index: runtime/vm/flow_graph_inliner.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_inliner.cc (revision 39331) |
| +++ runtime/vm/flow_graph_inliner.cc (working copy) |
| @@ -1286,12 +1286,9 @@ |
| bool PolymorphicInliner::TryInliningPoly(intptr_t receiver_cid, |
| const Function& target) { |
|
Vyacheslav Egorov (Google)
2014/08/18 15:37:34
add one space here to fix identation
|
| - if (!target.IsInlineable()) { |
| - if (TryInlineRecognizedMethod(receiver_cid, target)) { |
| - owner_->inlined_ = true; |
| - return true; |
| - } |
| - return false; |
| + if (TryInlineRecognizedMethod(receiver_cid, target)) { |
| + owner_->inlined_ = true; |
| + return true; |
| } |
| GrowableArray<Value*> arguments(call_->ArgumentCount()); |