[PATCH] D127058: [JITLink][ELF/AARCH64] Implement R_AARCH64_PREL32 and R_AARCH64_PREL64

Lang Hames via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 8 12:13:44 PDT 2022


lhames accepted this revision.
lhames added a comment.
This revision is now accepted and ready to land.

LGTM. Thanks @sunho!



================
Comment at: llvm/test/ExecutionEngine/JITLink/AArch64/ELF_aarch64_ehframe.test:1-3
+# RUN: rm -rf %t && mkdir -p %t
+# RUN: yaml2obj -o %t/eh_frame.o %s
+# RUN: llvm-jitlink -noexec -check %s %t/eh_frame.o
----------------
For single-file tests that don't need to name the object file in a `jitlink-check` expression, we usually omit the separate subdirectory:

```
# RUN: yaml2obj -o %t.o %s
# RUN: llvm-jitlink -noexec -check %s %t.o
```

I'll make this simplification here when I land the patch.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127058/new/

https://reviews.llvm.org/D127058



More information about the llvm-commits mailing list