Remove unnecessary TUI declarations
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / disasm.s
1 .text
2
3 .globl start_of_text
4 start_of_text:
5 .type start_of_text, "function"
6 .long 1
7 .size start_of_text, . - start_of_text
8
9 .globl func
10 func:
11 .type func, "function"
12 .long 2
13 .global global_non_func_sym
14 global_non_func_sym:
15 .long 3
16 local_non_func_sym:
17 .long 4
18 .size func, . - func
19
20 .globl next_func
21 next_func:
22 .type next_func, "function"
23 .long 5
24 .size next_func, . - next_func
This page took 0.03642 seconds and 4 git commands to generate.