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 | 67bebe794b7bf994d077c1c4f729091a34cbcaa4 (patch) | |
tree | d0de2af67a4f05d51c81b0dabfc4767c17ee4cc5 | |
parent | d74eb79518cd4707465305a582d8845f6e174b12 (diff) | |
download | gdb-67bebe794b7bf994d077c1c4f729091a34cbcaa4.zip gdb-67bebe794b7bf994d077c1c4f729091a34cbcaa4.tar.gz gdb-67bebe794b7bf994d077c1c4f729091a34cbcaa4.tar.bz2 |
* 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 | 4 |
4 files changed, 10 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c923594..54d9695 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 96ba75b..8b1286f 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 61ddd7a..2eaec72 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 f6d4a0e..76fa057 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -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 |