f0aed3118a9e897c1b39d62b7fc168bb9a3be28d
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.stabs / wierd-xcoff.S
1 #define N_GSYM 128
2 #define N_LSYM 129
3 #define N_BCOMM 135
4 #define N_ECOMM 137
5
6 #define VAR(name) \
7 .globl name; \
8 .align 1; \
9 name:; \
10 .long 42;
11 #define STAB(string,type,value) .stabx string,value,type,0
12
13 /* Put everything in this csect, which seems to make things work.
14 The compiler actually puts the stabs in .csect [PR], but that didn't
15 work here (I guess because there is no text section). */
16 .csect .data[RW]
17 #include "wierd.def"
This page took 0.029435 seconds and 3 git commands to generate.