diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-03 16:36:16 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-26 09:18:28 -0600 |
commit | 08994e1ddcc8e5e1e003602409662ae799a1ff30 (patch) | |
tree | b8a94c8c7d7c02c0e60f1c36db2ce05c67ac1b38 | |
parent | 63b4ecf76fec65c6853ea01ffab31642533801e9 (diff) | |
download | gdb-08994e1ddcc8e5e1e003602409662ae799a1ff30.zip gdb-08994e1ddcc8e5e1e003602409662ae799a1ff30.tar.gz gdb-08994e1ddcc8e5e1e003602409662ae799a1ff30.tar.bz2 |
Remove dead code in end_psymtab
I noticed that there is a bit of dead code in end_psymtab.
This deletes it.
Normally I would investigate a fix for the code. However, considering
that the code has been this way a long time (since the first import to
sourceware) and considering that dbxread.c is not as important any
more, I think it's safe to just consider that there's no bug.
gdb/ChangeLog
2018-07-26 Tom Tromey <tromey@redhat.com>
* dbxread.c (end_psymtab): Remove dead code.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dbxread.c | 8 |
2 files changed, 5 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 26c1fd4..4c2058d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2018-07-26 Tom Tromey <tromey@redhat.com> + + * dbxread.c (end_psymtab): Remove dead code. + 2018-07-26 Andrew Burgess <andrew.burgess@embecosm.com> * dwarf2-frame-tailcall.c (tailcall_frame_sniffer): Exit early if diff --git a/gdb/dbxread.c b/gdb/dbxread.c index d8864f3..fe9e842 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -2051,13 +2051,7 @@ dbx_end_psymtab (struct objfile *objfile, struct partial_symtab *pst, ALL_OBJFILE_PSYMTABS (objfile, p1) { if (p1->texthigh == 0 && p1->textlow != 0 && p1 != pst) - { - p1->texthigh = pst->textlow; - /* If this file has only data, then make textlow match - texthigh. */ - if (p1->textlow == 0) - p1->textlow = p1->texthigh; - } + p1->texthigh = pst->textlow; } } |