[llvm] [llvm-jitlink] Support plain AArch32 range extension stubs in jitlink-check's stub_addr() expressions (PR #73268)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 24 05:41:38 PST 2023
Stefan =?utf-8?q?Gränitz?= <stefan.graenitz at gmail.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/73268 at github.com>
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 c4779ea8e709a7bce7288988fabf1ba50e9c9477 9e93ba074455e15ef4d70051034b7deecfadb9a4 -- llvm/include/llvm/ExecutionEngine/JITLink/aarch32.h llvm/tools/llvm-jitlink/llvm-jitlink-elf.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/tools/llvm-jitlink/llvm-jitlink-elf.cpp b/llvm/tools/llvm-jitlink/llvm-jitlink-elf.cpp
index a6bd5733dd..7ddceab501 100644
--- a/llvm/tools/llvm-jitlink/llvm-jitlink-elf.cpp
+++ b/llvm/tools/llvm-jitlink/llvm-jitlink-elf.cpp
@@ -68,8 +68,8 @@ static Expected<Symbol &> getELFStubTarget(LinkGraph &G, Block &B) {
return getELFGOTTarget(G, GOTSym.getBlock());
}
-static Expected<std::string>
-getELFAArch32StubTargetName(LinkGraph &G, Block &B) {
+static Expected<std::string> getELFAArch32StubTargetName(LinkGraph &G,
+ Block &B) {
auto E = getFirstRelocationEdge(G, B);
if (!E)
return E.takeError();
``````````
</details>
https://github.com/llvm/llvm-project/pull/73268
More information about the llvm-commits
mailing list