diff options
author | Alan Modra <amodra@gmail.com> | 2023-05-03 15:53:29 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-05-03 15:53:29 +0930 |
commit | a07223191bdda5e85a500e3b8206ee8fe8bcdfed (patch) | |
tree | 0184018534c7fc1c58bcb3ddb223916123f55c56 /gas/config | |
parent | 717d4bd6d199fcf834f741489aaf3bd800f9769f (diff) | |
download | gdb-a07223191bdda5e85a500e3b8206ee8fe8bcdfed.zip gdb-a07223191bdda5e85a500e3b8206ee8fe8bcdfed.tar.gz gdb-a07223191bdda5e85a500e3b8206ee8fe8bcdfed.tar.bz2 |
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/config')
-rw-r--r-- | gas/config/obj-coff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 465a990..6216b1f 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; } |