blob: c95f891057a082c2c05c66851de22a68bdba4528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.text
.globl main
.type main, @function
main:
subq $8, %rsp
movq bar_alias(%rip), %rdi
call foo@PLT
xorl %eax, %eax
addq $8, %rsp
ret
.size main, .-main
.section .note.GNU-stack,"",@progbits
|