[llvm] [BOLT] Refactor interface for creating instruction patches. NFCI (PR #129404)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 1 14:19:07 PST 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 9b7b7d60755c914e38337ec43a92497e5c1afef0 f6f8c7326f4eb4be79201ad99560c165c463fa83 --extensions cpp,h -- bolt/include/bolt/Core/BinaryContext.h bolt/include/bolt/Passes/PatchEntries.h bolt/lib/Core/BinaryContext.cpp bolt/lib/Passes/PatchEntries.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/bolt/lib/Core/BinaryContext.cpp b/bolt/lib/Core/BinaryContext.cpp
index 7ec16a6429..8fa1e367c6 100644
--- a/bolt/lib/Core/BinaryContext.cpp
+++ b/bolt/lib/Core/BinaryContext.cpp
@@ -2400,10 +2400,8 @@ BinaryContext::createInjectedBinaryFunction(const std::string &Name,
return BF;
}
-BinaryFunction *
-BinaryContext::createInstructionPatch(uint64_t Address,
- InstructionListType &Instructions,
- const Twine &Name) {
+BinaryFunction *BinaryContext::createInstructionPatch(
+ uint64_t Address, InstructionListType &Instructions, const Twine &Name) {
ErrorOr<BinarySection &> Section = getSectionForAddress(Address);
assert(Section && "cannot get section for patching");
assert(Section->hasSectionRef() && Section->isText() &&
``````````
</details>
https://github.com/llvm/llvm-project/pull/129404
More information about the llvm-commits
mailing list