19 lines
199 B
ArmAsm
19 lines
199 B
ArmAsm
|
.text
|
||
|
.globl g
|
||
|
.type g, @function
|
||
|
g:
|
||
|
movq f@GOTPCREL(%rip), %rax
|
||
|
retq
|
||
|
|
||
|
.globl h
|
||
|
.type h, @function
|
||
|
h:
|
||
|
leaq zed, %rax
|
||
|
movslq zed, %rbx
|
||
|
addq %rbx, %rax
|
||
|
retq
|
||
|
|
||
|
.data
|
||
|
zed:
|
||
|
.long f - .
|