diff options
author | John Gilmore <gnu@cygnus> | 1991-09-20 21:50:27 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-09-20 21:50:27 +0000 |
commit | 30c52cdf23c167bb7e6ba3c9770852746b3b2dbc (patch) | |
tree | 54bd1c6e367f701f0588608d87546bbdd335035b /gas/a.out.gnu.h | |
parent | 1b3f485c582b72bb215ed3c04c31650daf6e1c8d (diff) | |
download | gdb-30c52cdf23c167bb7e6ba3c9770852746b3b2dbc.zip gdb-30c52cdf23c167bb7e6ba3c9770852746b3b2dbc.tar.gz gdb-30c52cdf23c167bb7e6ba3c9770852746b3b2dbc.tar.bz2 |
Update N_FN value to 0x1F. Add comments about N_EXT bits.
Diffstat (limited to 'gas/a.out.gnu.h')
-rwxr-xr-x | gas/a.out.gnu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/a.out.gnu.h b/gas/a.out.gnu.h index 3833d71..9ce531d 100755 --- a/gas/a.out.gnu.h +++ b/gas/a.out.gnu.h @@ -169,9 +169,12 @@ struct nlist { #define N_TEXT 4 #define N_DATA 6 #define N_BSS 8 -#define N_FN 0xe #define N_COMM 0x12 /* common (visible in shared lib commons) */ +#define N_FN 0x1F /* File name of a .o file */ +/* Note: N_EXT can only usefully be OR-ed with N_UNDF, N_ABS, N_TEXT, + N_DATA, or N_BSS. When the low-order bit of other types is set, + (e.g. N_WARNING versus N_FN), they are two different types. */ #define N_EXT 1 #define N_TYPE 036 #define N_STAB 0340 |