* gdb.stabs/wierd.def: Make value of N_GSYM's 0.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.stabs / wierd-aout.S
1 /* GDB legitimately expects a file name. */
2 /* The sun3 assembler bogusly requires that the value of this stab be a
3 label. Placate it. */
4 .stabs "wierd.c",0x64,0,0,Label0
5 Label0:
6
7 #define N_LSYM 0x80
8 #define N_GSYM 0x20
9 #define N_BCOMM 0xe2
10 #define N_ECOMM 0xe4
11
12 #define VAR(name) \
13 .globl name; \
14 .data; \
15 .align 2; \
16 name:; \
17 .long 42
18
19 #define STAB(string,type,value) .stabs string,type,0,0,value
20 #include "wierd.def"
21
22 /* Stuff with backslashes needs to go here, since the aix assembler treats
23 them differently. */
24
25 STAB("sym92:\\ !#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~",N_LSYM,0)
26 STAB("type92:t92=\\ !#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~",N_LSYM,0)
27 STAB("attr92:G392=@\\ !#$%&'()*+,-./0123456789:<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~;1",N_GSYM, 0)
This page took 0.039101 seconds and 4 git commands to generate.