[llvm] [llvm-objcopy] Add support of symbol modification flags for MachO (PR #120895)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 22 04:54:08 PST 2024
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 e8f1902cca2aeaa23db6080fe33fbc67ed203350 2f068b96c03b29781bb51abfc3983f3cd29f5bbd --extensions h,cpp -- llvm/lib/ObjCopy/ConfigManager.cpp llvm/lib/ObjCopy/MachO/MachOObjcopy.cpp llvm/lib/ObjCopy/MachO/MachOObject.cpp llvm/lib/ObjCopy/MachO/MachOObject.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/ObjCopy/MachO/MachOObject.cpp b/llvm/lib/ObjCopy/MachO/MachOObject.cpp
index 9166b45f53..ad26350ca0 100644
--- a/llvm/lib/ObjCopy/MachO/MachOObject.cpp
+++ b/llvm/lib/ObjCopy/MachO/MachOObject.cpp
@@ -41,9 +41,9 @@ void SymbolTable::updateSymbols(function_ref<void(SymbolEntry &)> Callable) {
auto it_ext = std::stable_partition(
std::begin(Symbols), std::end(Symbols),
[](const auto &Sym) { return Sym->isLocalSymbol(); });
- std::stable_partition(
- it_ext, std::end(Symbols),
- [](const auto &Sym) { return !Sym->isUndefinedSymbol(); });
+ std::stable_partition(it_ext, std::end(Symbols), [](const auto &Sym) {
+ return !Sym->isUndefinedSymbol();
+ });
}
void SymbolTable::removeSymbols(
``````````
</details>
https://github.com/llvm/llvm-project/pull/120895
More information about the llvm-commits
mailing list