diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-01 16:06:37 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-12 15:50:50 -0700 |
commit | bda13cdcf0db4d9cee648bfa0bfc7f1a4415d2a7 (patch) | |
tree | a11e4629bd2cfa2b93099d1348b2e49697559fa2 /gdb/symfile.c | |
parent | ac0ab1842de0e4522248ff9805c5c4e3267c8ae7 (diff) | |
download | gdb-bda13cdcf0db4d9cee648bfa0bfc7f1a4415d2a7.zip gdb-bda13cdcf0db4d9cee648bfa0bfc7f1a4415d2a7.tar.gz gdb-bda13cdcf0db4d9cee648bfa0bfc7f1a4415d2a7.tar.bz2 |
Make the objfile constructor private
This changes the objfile constructor to be private, changing the
callers to use a factory method. This isn't perhaps strictly needed
for the goal of this series -- changing the container model of
objfiles -- but is a nice symmetry.
gdb/ChangeLog
2019-12-12 Tom Tromey <tom@tromey.com>
* symfile.c (symbol_file_add_with_addrs): Use objfile::make.
* objfiles.h (struct objfile): Make constructor private.
<make>: New static method.
* jit.c (jit_object_close_impl): Update.
Change-Id: I42e07bc80a88cf3322ace94ffe869ae5788bcb29
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index aec07d7..eef27a8 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1093,7 +1093,7 @@ symbol_file_add_with_addrs (bfd *abfd, const char *name, if (mainline) flags |= OBJF_MAINLINE; - objfile = new struct objfile (abfd, name, flags); + objfile = objfile::make (abfd, name, flags); if (parent) add_separate_debug_objfile (objfile, parent); |