mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
15 lines
172 B
ArmAsm
15 lines
172 B
ArmAsm
|
.data
|
||
|
.hidden foo
|
||
|
.globl foo
|
||
|
foo:
|
||
|
.byte 20
|
||
|
local:
|
||
|
.byte 20
|
||
|
.text
|
||
|
.globl bar
|
||
|
.type bar, @function
|
||
|
bar:
|
||
|
lea foo(%rip), %rax
|
||
|
lea local(%rip), %rax
|
||
|
.size bar, .-bar
|