[lld] Update InputFiles.cpp (PR #72080)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 12 19:36:50 PST 2023
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 edc38a6cbd12a7cfa5d3c4de9767333c442ef2eb 291745effe8291b45483eeb840a8a467945dee88 -- lld/ELF/InputFiles.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp
index 0602f435e7..86c6d8ab2f 100644
--- a/lld/ELF/InputFiles.cpp
+++ b/lld/ELF/InputFiles.cpp
@@ -1451,8 +1451,8 @@ template <class ELFT> void SharedFile::parse() {
// DSOs are uniquified not by filename but by soname.
DenseMap<CachedHashStringRef, SharedFile *>::iterator it;
bool wasInserted;
- std::tie(it, wasInserted) =
- symtab.soNames.try_emplace(CachedHashStringRef(path::filename(soName)), this);
+ std::tie(it, wasInserted) = symtab.soNames.try_emplace(
+ CachedHashStringRef(path::filename(soName)), this);
// If a DSO appears more than once on the command line with and without
// --as-needed, --no-as-needed takes precedence over --as-needed because a
``````````
</details>
https://github.com/llvm/llvm-project/pull/72080
More information about the llvm-commits
mailing list