19 lines
223 B
ArmAsm
Raw Normal View History

2013-04-03 21:39:13 +02:00
.text
.globl _start
.globl __start
_start:
__start:
2014-03-19 17:25:32 +01:00
.ifdef HPUX
foo .comm 4
.else
2013-04-03 21:39:13 +02:00
.comm foo, 4, 4
2014-03-19 17:25:32 +01:00
.endif
2013-04-03 21:39:13 +02:00
.section .debug_foo,"",%progbits
.balign 16
.ifdef ELF64
.8byte foo
.else
.4byte foo
.endif
.balign 16