4 changed files with 17 additions and 8 deletions
@ -1,2 +1,2 @@ |
|||
.section .eh_frame,"a",@progbits |
|||
.section .eh_frame,"a",%progbits |
|||
.4byte 0 |
|||
|
|||
@ -1 +1 @@ |
|||
.section .gcc_except_table,"a",@progbits |
|||
.section .gcc_except_table,"a",%progbits |
|||
|
|||
@ -1,15 +1,15 @@ |
|||
.file "x.c" |
|||
.globl bss |
|||
.section .bss,"aw",@nobits |
|||
.align 4096 |
|||
.type bss,@object |
|||
.section .bss,"aw",%nobits |
|||
.p2align 12 |
|||
.type bss,%object |
|||
.size bss,4096 |
|||
bss: |
|||
.zero 4096 |
|||
.globl tbss |
|||
.section .tbss,"awT",@nobits |
|||
.align 4096 |
|||
.type tbss,@object |
|||
.section .tbss,"awT",%nobits |
|||
.p2align 12 |
|||
.type tbss,%object |
|||
.size tbss,4096 |
|||
tbss: |
|||
.zero 4096 |
|||
|
|||
Loading…
Reference in new issue