diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-19 20:59:59 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-02-06 15:48:18 -0500 |
commit | 43b49762a17718fe13718238a8c0af9b62b682d4 (patch) | |
tree | 8be30b479fd70e628e0f8a4e2085465549f98768 /gdb/symfile.c | |
parent | 0b17a4f78fb969e7c1ae298561ef6963c73006a7 (diff) | |
download | gdb-43b49762a17718fe13718238a8c0af9b62b682d4.zip gdb-43b49762a17718fe13718238a8c0af9b62b682d4.tar.gz gdb-43b49762a17718fe13718238a8c0af9b62b682d4.tar.bz2 |
gdb: add compunit_symtab::add_filetab method
Add a method to append a filetab/symtab to a compunit_symtab. There is
a single place where this is done currently, in allocate_symtab.
Change-Id: Ie86c6e34d175728173d1cffdce44acd6cff6c31d
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index a660422..8ec214f 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -2804,16 +2804,7 @@ allocate_symtab (struct compunit_symtab *cust, const char *filename) } /* Add it to CUST's list of symtabs. */ - if (cust->filetabs == NULL) - { - cust->filetabs = symtab; - cust->last_filetab = symtab; - } - else - { - cust->last_filetab->next = symtab; - cust->last_filetab = symtab; - } + cust->add_filetab (symtab); /* Backlink to the containing compunit symtab. */ symtab->compunit_symtab = cust; |