aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdb_bfd.c
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2022-10-05 15:25:59 +0100
committerAndrew Burgess <aburgess@redhat.com>2022-10-10 13:05:27 +0100
commit322dd71cbffdd681f3c94ad28b625f71ea9369f8 (patch)
tree9313b773f63a347592438ff454be73f605ce1e9d /gdb/gdb_bfd.c
parente4014689b9a1b9aa0dde8f8a358401774566fe8b (diff)
downloadgdb-322dd71cbffdd681f3c94ad28b625f71ea9369f8.zip
gdb-322dd71cbffdd681f3c94ad28b625f71ea9369f8.tar.gz
gdb-322dd71cbffdd681f3c94ad28b625f71ea9369f8.tar.bz2
gdb: remove filename arg from gdb_bfd_open_from_target_memory
The filename argument to gdb_bfd_open_from_target_memory was never used; this argument had a default value of nullptr, and the only call to this function, in jit.c, relied on the default value. In the next commit I'm going to make some changes to the gdb_bfd_open_from_target_memory function, and, though I could take account of a filename parameter, it seems pointless to maintain an unused argument. This commit removes the filename argument. There should be no user visible changes after this commit.
Diffstat (limited to 'gdb/gdb_bfd.c')
-rw-r--r--gdb/gdb_bfd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c
index 7e74389..36ef5e1 100644
--- a/gdb/gdb_bfd.c
+++ b/gdb/gdb_bfd.c
@@ -288,14 +288,13 @@ mem_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
gdb_bfd_ref_ptr
gdb_bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size,
- const char *target,
- const char *filename)
+ const char *target)
{
struct target_buffer *buffer = XNEW (struct target_buffer);
buffer->base = addr;
buffer->size = size;
- return gdb_bfd_openr_iovec (filename ? filename : "<in-memory>", target,
+ return gdb_bfd_openr_iovec ("<in-memory>", target,
mem_bfd_iovec_open,
buffer,
mem_bfd_iovec_pread,