blob: 87f981e53a228dea4c0a73a969071b6e79cc3b95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.text
.globl _start
.globl __start
_start:
__start:
.comm foo, 4, 4
.section .debug_foo,"",%progbits
.balign 16
.ifdef ELF64
.8byte foo
.else
.4byte foo
.endif
.balign 16
|