1 .text 2 .abiversion 2 3 .type c,@object # @c 4 .section .tdata,"awT",@progbits 5 .globl c 6c: 7 .byte 97 # 0x61 8 .size c, 1 9 10 .type s,@object # @s 11 .globl s 12 .p2align 1 13s: 14 .short 55 # 0x37 15 .size s, 2 16 17 .type i,@object # @i 18 .globl i 19 .p2align 2 20i: 21 .long 55 # 0x37 22 .size i, 4 23 24 .type l,@object # @l 25 .globl l 26 .p2align 3 27l: 28 .quad 55 # 0x37 29 .size l, 8 30