[llvm] TargetLibraryInfo: Bring FreeBSD function list up to date (PR #144846)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 18 23:39:23 PDT 2025
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 HEAD~1 HEAD --extensions cpp -- llvm/lib/Analysis/TargetLibraryInfo.cpp llvm/tools/llvm-tli-checker/llvm-tli-checker.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/tools/llvm-tli-checker/llvm-tli-checker.cpp b/llvm/tools/llvm-tli-checker/llvm-tli-checker.cpp
index 97d5580c8..95795b16a 100644
--- a/llvm/tools/llvm-tli-checker/llvm-tli-checker.cpp
+++ b/llvm/tools/llvm-tli-checker/llvm-tli-checker.cpp
@@ -169,9 +169,10 @@ void SDKNameMap::maybeInsertSymbol(const SymbolRef &S, const ObjectFile &O) {
section_iterator Section = unwrapIgnoreError(S.getSection(),
/*Default=*/O.section_end());
bool IsRegularFunction = Type == SymbolRef::ST_Function &&
- (Flags & SymbolRef::SF_Global) &&
- Section != O.section_end();
- bool IsIFunc = Type == SymbolRef::ST_Other && (Flags & SymbolRef::SF_Indirect);
+ (Flags & SymbolRef::SF_Global) &&
+ Section != O.section_end();
+ bool IsIFunc =
+ Type == SymbolRef::ST_Other && (Flags & SymbolRef::SF_Indirect);
if (IsRegularFunction || IsIFunc) {
StringRef Name = unwrapIgnoreError(S.getName());
insert({ Name, true });
``````````
</details>
https://github.com/llvm/llvm-project/pull/144846
More information about the llvm-commits
mailing list