* Move test with enums and partial symbols from gdb.t02/ptype.exp
[binutils-gdb.git] / gdb / testsuite / gdb.stabs / wierd-aout.S
1 /* GDB legitimately expects a file name. */
2 .stabs "wierd.c",0x64,0,0,0
3
4 #define N_LSYM 0x80
5 #define N_GSYM 0x20
6
7 #define VAR(name) \
8 .globl name; \
9 .data; \
10 .align 2; \
11 name:; \
12 .long 42
13
14 #define STAB(string,type,value) .stabs string,type,0,0,value
15 #include "wierd.def"