mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
21 lines
268 B
ArmAsm
21 lines
268 B
ArmAsm
|
.text
|
||
|
.globl main
|
||
|
.type main,@function
|
||
|
main:
|
||
|
pushq %rax
|
||
|
movslq bar(%rip), %rax
|
||
|
leaq bar(%rip), %rdi
|
||
|
addq %rax, %rdi
|
||
|
|
||
|
callq foo
|
||
|
xorl %eax, %eax
|
||
|
popq %rcx
|
||
|
retq
|
||
|
|
||
|
.data
|
||
|
.p2align 2
|
||
|
bar:
|
||
|
.long test - .
|
||
|
|
||
|
.section .note.GNU-stack,"",@progbits
|