mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
12 lines
171 B
ArmAsm
12 lines
171 B
ArmAsm
# Test the R_ARM_REL31 relocation
|
|
.section .before
|
|
.global _start
|
|
_start:
|
|
.text
|
|
.rel31 0, foo
|
|
.rel31 0, _start
|
|
.rel31 1, foo
|
|
.rel31 1, _start
|
|
.section .after
|
|
foo:
|