* Move test with enums and partial symbols from gdb.t02/ptype.exp
[binutils-gdb.git] / gdb / testsuite / gdb.stabs / wierd-xcoff.S
1 #define N_LSYM 0x81
2 #define N_GSYM 0x80
3
4 #define VAR(name) \
5 .globl name; \
6 .align 1; \
7 name:; \
8 .long 42;
9 #define STAB(string,type,value) .stabx string,value,type,0
10
11 /* Put everything in this csect, which seems to make things work.
12 The compiler actually puts the stabs in .csect [PR], but that didn't
13 work here (I guess because there is no text section). */
14 .csect .data[RW]
15 #include "wierd.def"