From 08994e1ddcc8e5e1e003602409662ae799a1ff30 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 3 May 2018 16:36:16 -0600 Subject: 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 * dbxread.c (end_psymtab): Remove dead code. --- gdb/dbxread.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'gdb/dbxread.c') 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; } } -- cgit v1.1