[PATCH] D120344: [SampleProf][Inliner] Add an option to turn off inliner in sample-profile pass.
David Li via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 22 12:18:09 PST 2022
davidxl added inline comments.
================
Comment at: llvm/lib/Transforms/IPO/SampleProfile.cpp:187
+static cl::opt<bool> ProfileInlineFunctions(
+ "sample-profile-inline-functions", cl::Hidden, cl::init(true),
+ cl::desc("If false, turn off inliner in sample profile loader. Used for "
----------------
it is better to invert it: 'disable-sample-loader-inlining' and set to false.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120344/new/
https://reviews.llvm.org/D120344
More information about the llvm-commits
mailing list