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 | .bss .type sharedFoo,@object .globl sharedFoo sharedFoo: .long 0 .size sharedFoo, 4 .type sharedBar,@object .globl sharedBar sharedBar: .quad 0 .size sharedBar, 8 .text .globl sharedFunc1 .type sharedFunc1,@function sharedFunc1: nop .globl sharedFunc2 .type sharedFunc2,@function sharedFunc2: nop |