mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
c60b380679
Allows aarch64-pe to be targeted natively, not having to use objcopy to convert it from ELF to PE. Based on initial work by Jedidiah Thompson Co-authored-by: Jedidiah Thompson <wej22007@outlook.com> Co-authored-by: Zac Walker <zac.walker@linaro.org>
12 lines
242 B
ArmAsm
12 lines
242 B
ArmAsm
# A little test to ensure pe-aarch64 is working in LD.
|
|
# Currently, the poor pe-aarch64 implementation in binutils
|
|
# couldn't do anything useful, hence, this test is rather short
|
|
|
|
.section .text
|
|
|
|
_start:
|
|
mov x1, 20
|
|
b foo
|
|
foo:
|
|
ret
|