[PATCH] D19640: Update opt-bisect code to avoid skipping AlwaysInliner
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Fri May 20 20:18:21 PDT 2016
MatzeB requested changes to this revision.
MatzeB added a comment.
This revision now requires changes to proceed.
I think we can achieve this without a virtual function by refactoring all the code inside Inliner::runOnScc() that comes below the skipSCC() check into an own function. The AlwaysInliner pass can then just override runOnSCC() which calls this common function but contrary to Inliner::runOnSCC() without checking skipSCC().
Repository:
rL LLVM
http://reviews.llvm.org/D19640
More information about the llvm-commits
mailing list