diff options
author | Alan Modra <amodra@gmail.com> | 2015-01-11 08:30:33 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-01-12 18:07:52 +1030 |
commit | b38ead219b31fed4014cd5b1078da968744b879d (patch) | |
tree | aa980814e17268e12648817156ffbbd9017fe100 /gas/read.c | |
parent | 005e54bb792bc74f1168def16f35078be588871a (diff) | |
download | gdb-b38ead219b31fed4014cd5b1078da968744b879d.zip gdb-b38ead219b31fed4014cd5b1078da968744b879d.tar.gz gdb-b38ead219b31fed4014cd5b1078da968744b879d.tar.bz2 |
Assorted compiler warning fixes
The C standard doesn't guarantee a function pointer can be cast to
void* and vice versa.
binutils/
* prdbg.c (print_debugging_info): Don't use void* for function
pointer param.
* budbg.h (print_debugging_info): Update prototype.
gas/
* read.c (s_altmacro, s_reloc): Make definition static.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1579,7 +1579,7 @@ s_align_ptwo (int arg) /* Switch in and out of alternate macro mode. */ -void +static void s_altmacro (int on) { demand_empty_rest_of_line (); @@ -3984,7 +3984,7 @@ s_rva (int size) /* .reloc offset, reloc_name, symbol+addend. */ -void +static void s_reloc (int ignore ATTRIBUTE_UNUSED) { char *stop = NULL; |