diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-01 16:10:48 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-12 15:50:51 -0700 |
commit | f65fe5704af56aca58fd5547d0841a9512e540af (patch) | |
tree | d9417b502413aa887de630366220a1c324fd1875 /gdb/symfile.c | |
parent | bda13cdcf0db4d9cee648bfa0bfc7f1a4415d2a7 (diff) | |
download | gdb-f65fe5704af56aca58fd5547d0841a9512e540af.zip gdb-f65fe5704af56aca58fd5547d0841a9512e540af.tar.gz gdb-f65fe5704af56aca58fd5547d0841a9512e540af.tar.bz2 |
Make add_separate_debug_objfile static
This changes objfile::make to take a "parent" parameter, and makes
add_separate_debug_objfile static.
gdb/ChangeLog
2019-12-12 Tom Tromey <tom@tromey.com>
* symfile.c (symbol_file_add_with_addrs): Pass "parent" to
objfile::make.
* objfiles.h (struct objjfile) <make>: No longer inline.
(add_separate_debug_objfile): Don't declare.
* objfiles.c (add_separate_debug_objfile): Now static.
(objfile::make): Move from objfiles.h. Call
add_separate_debug_objfile. Add "parent" parameter.
Change-Id: I631f43bb71738dea6ae0697317bf8ef4a0db4617
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index eef27a8..8e3cf7f 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1093,10 +1093,7 @@ symbol_file_add_with_addrs (bfd *abfd, const char *name, if (mainline) flags |= OBJF_MAINLINE; - objfile = objfile::make (abfd, name, flags); - - if (parent) - add_separate_debug_objfile (objfile, parent); + objfile = objfile::make (abfd, name, flags, parent); /* We either created a new mapped symbol table, mapped an existing symbol table file which has not had initial symbol reading |