[llvm] Add a flag to disable salvage-unused-profile for large modules. (PR #185354)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 8 23:28:09 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- llvm/lib/Transforms/IPO/SampleProfileMatcher.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/IPO/SampleProfileMatcher.cpp b/llvm/lib/Transforms/IPO/SampleProfileMatcher.cpp
index 747174ce3..0fe7562dd 100644
--- a/llvm/lib/Transforms/IPO/SampleProfileMatcher.cpp
+++ b/llvm/lib/Transforms/IPO/SampleProfileMatcher.cpp
@@ -894,8 +894,8 @@ void SampleProfileMatcher::runOnModule() {
// Disable SalvageUnusedProfile if the module has an extremely large number of
// functions to limit compile time.
- SalvageUnusedProfile = SalvageUnusedProfile &&
- M.size() < SalvageStaleProfileMaxFunctions;
+ SalvageUnusedProfile =
+ SalvageUnusedProfile && M.size() < SalvageStaleProfileMaxFunctions;
if (SalvageUnusedProfile)
findFunctionsWithoutProfile();
``````````
</details>
https://github.com/llvm/llvm-project/pull/185354
More information about the llvm-commits
mailing list