gdb: pass program space to objfile::make

Make the current program space reference bubble up one level.

Change-Id: Iee8b11c853c76e539c991c4785737c69e6a1925c
Approved-By: Tom Tromey <tom@tromey.com>
Reviewed-By: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
This commit is contained in:
Simon Marchi
2024-05-16 17:30:22 -04:00
committed by Simon Marchi
parent da877546db
commit 8991986e24
4 changed files with 10 additions and 8 deletions

View File

@@ -437,8 +437,9 @@ public:
~objfile ();
/* Create an objfile. */
static objfile *make (gdb_bfd_ref_ptr bfd_, const char *name_,
objfile_flags flags_, objfile *parent = nullptr);
static objfile *make (gdb_bfd_ref_ptr bfd_, program_space *pspace,
const char *name_, objfile_flags flags_,
objfile *parent = nullptr);
/* Remove this objfile from its program space's objfile list, and frees
it. */