diff options
author | Stu Grossman <grossman@cygnus> | 1992-01-28 02:38:11 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-01-28 02:38:11 +0000 |
commit | 0bd83fd72341859bb278ff1e5110c27fb0c80096 (patch) | |
tree | fbd4d435cb6e6ce125c74bd3cc329f2e5ccfaba1 /gdb/dbxread.c | |
parent | d93b79d97d69bcebec425ba601977e5a97f050fd (diff) | |
download | gdb-0bd83fd72341859bb278ff1e5110c27fb0c80096.zip gdb-0bd83fd72341859bb278ff1e5110c27fb0c80096.tar.gz gdb-0bd83fd72341859bb278ff1e5110c27fb0c80096.tar.bz2 |
Oops, checked in version with the wrong stuff enabled. Turn it off...
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 251a81a..d2992ba 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -1355,12 +1355,14 @@ process_one_symbol (type, desc, valu, name) { case N_FUN: case N_FNAME: +#if 0 /* It seems that the Sun ANSI C compiler (acc) replaces N_FUN with N_GSYM and N_STSYM with a type code of f or F. Can't enable this until we get some - stuff straightened out with psymtabs. -*/ + stuff straightened out with psymtabs. */ + case N_GSYM: case N_STSYM: +#endif /* 0 */ /* Either of these types of symbols indicates the start of a new function. We must process its "name" normally for dbx, |