Files
clang-p2996/lld/test/ELF/Inputs/relocation-copy.s
Igor Kudrin 9606d19a65 [ELF/AArch64] Support R_AARCH64_COPY relocation.
Generate R_AARCH64_COPY relocations for non-GOT relocations,
which reference object symbols from shared libraries.

Differential revision: http://reviews.llvm.org/D15043

llvm-svn: 254591
2015-12-03 08:05:35 +00:00

23 lines
181 B
ArmAsm

.bss
.type x,@object
.globl x
.balign 16
x:
.long 0
.size x, 4
.type y,@object
.globl y
.balign 16
y:
.long 0
.size y, 4
.type z,@object
.globl z
.balign 4
z:
.long 0
.size z, 4