summaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-05-03 15:53:29 +0930
committerAlan Modra <amodra@gmail.com>2023-05-03 15:53:29 +0930
commita07223191bdda5e85a500e3b8206ee8fe8bcdfed (patch)
tree0184018534c7fc1c58bcb3ddb223916123f55c56 /gas
parent717d4bd6d199fcf834f741489aaf3bd800f9769f (diff)
downloadbinutils-gdb-a07223191bdda5e85a500e3b8206ee8fe8bcdfed.tar.gz
Remove unused args from bfd_make_debug_symbol
The ptr and size args are unused. Make the function look the same as bfd_make_empty_symbol.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/obj-coff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c
index 465a990ec88..6216b1f63ee 100644
--- a/gas/config/obj-coff.c
+++ b/gas/config/obj-coff.c
@@ -238,7 +238,7 @@ fetch_coff_debug_section (void)
{
const asymbol *s;
- s = bfd_make_debug_symbol (stdoutput, NULL, 0);
+ s = bfd_make_debug_symbol (stdoutput);
gas_assert (s != 0);
debug_section = s->section;
}