reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | .option pic2 .text .globl _foo _foo: nop .globl foo0 .type foo0, @function foo0: nop .globl foo1 .type foo1, @function foo1: nop .data .globl data0 .type data0, @object .size data0, 4 data0: .word 0 .globl data1 .type data1, @object .size data1, 4 data1: .word 0 |