diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-07-01 20:25:54 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-07-01 20:25:54 +0000 |
commit | c72da8e952a870bc459c577b472538dc4603e052 (patch) | |
tree | 7b959e04d7a1c194829d4b0ee44073d25ab33d6e | |
parent | de5ea60b7caebde71034e6d89534e72c47a87e5f (diff) | |
download | gdb-c72da8e952a870bc459c577b472538dc4603e052.tar.gz |
* dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
code.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dbxread.c | 8 | ||||
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 6 |
4 files changed, 11 insertions, 13 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c9235948d32..54d969507b8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-07-01 Mark Kettenis <kettenis@gnu.org> + + * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead + code. + 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com> * ada-lang.c (decode_packed_array): Minor change to comment. diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 96ba75b57e8..8b1286fff72 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -2868,14 +2868,6 @@ process_one_symbol (int type, int desc, CORE_ADDR valu, char *name, n_opt_found = 0; -#ifdef PCC_SOL_BROKEN - /* pcc bug, occasionally puts out SO for SOL. */ - if (context_stack_depth > 0) - { - start_subfile (name, NULL); - break; - } -#endif if (last_source_file) { /* Check if previous symbol was also an N_SO (with some diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 61ddd7aece8..2eaec728da1 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-01 Mark Kettenis <kettenis@gnu.org> + + * gdbint.texinfo (Target Architecture Definition): Remove + PCC_SOL_BROKEN. + 2004-06-24 Mark Kettenis <kettenis@gnu.org> * gdbint.texinfo (Target Architecture Definition): Remove diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index cf6d8591e34..548440c8df4 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -38,7 +38,7 @@ Free Documentation License''. @page @tex \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.213 $} % For use in headers, footers too +\xdef\manvers{\$Revision: 1.214 $} % For use in headers, footers too {\parskip=0pt \hfill Cygnus Solutions\par \hfill \manvers\par @@ -3547,10 +3547,6 @@ and guess the starting and ending addresses of the compilation unit from them. @end itemize -@item PCC_SOL_BROKEN -@findex PCC_SOL_BROKEN -(Used only in the Convex target.) - @item PC_LOAD_SEGMENT @findex PC_LOAD_SEGMENT If defined, print information about the load segment for the program |