diff options
Diffstat (limited to 'gdb/testsuite/gdb.stabs/wierd-xcoff.S')
-rw-r--r-- | gdb/testsuite/gdb.stabs/wierd-xcoff.S | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.stabs/wierd-xcoff.S b/gdb/testsuite/gdb.stabs/wierd-xcoff.S index 0b65f6f..f697d76 100644 --- a/gdb/testsuite/gdb.stabs/wierd-xcoff.S +++ b/gdb/testsuite/gdb.stabs/wierd-xcoff.S @@ -1,7 +1,10 @@ #define N_GSYM 128 #define N_LSYM 129 -#define N_BCOMM 135 -#define N_ECOMM 137 + +/* If we try to use .stabx for common blocks, the AIX assembler (bogusly) + complains about the lack of a colon in the stabstring. */ +#define BEGIN_COMMON(name) .bc name +#define END_COMMON(name) .ec #define VAR(name) \ .globl name; \ |