]> granicus.if.org Git - llvm/commit
[PartialInliner] Skip call sites where inlining fails.
authorFlorian Hahn <florian.hahn@arm.com>
Fri, 3 Nov 2017 11:29:00 +0000 (11:29 +0000)
committerFlorian Hahn <florian.hahn@arm.com>
Fri, 3 Nov 2017 11:29:00 +0000 (11:29 +0000)
commit6cd2a99eb6756292d2b78115f00d0fe9e1e35e23
treeff25b3b18b38b1b615fcfbf94a0f58a39fafbbb2
parenta7372f15c92ca8a556487877cb9df960ad68f4e3
[PartialInliner] Skip call sites where inlining fails.

Summary:
InlineFunction can fail, for example when trying to inline vararg
fuctions. In those cases, we do not want to bump partial inlining
counters or set AnyInlined to true, because this could leave an unused
function hanging around.

Reviewers: davidxl, davide, gyiu

Reviewed By: davide

Subscribers: llvm-commits, eraman

Differential Revision: https://reviews.llvm.org/D39581

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317314 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/IPO/PartialInlining.cpp
test/Transforms/CodeExtractor/PartialInlineNoInline.ll [new file with mode: 0644]