diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-06-19 18:42:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-06-19 18:42:42 +0000 |
commit | 8095b665cb218ed8d9a617362fec29d570250a8a (patch) | |
tree | 90a6d1234bcaf2bb2a4093ba87d273fc83b140b2 /gas/symbols.c | |
parent | 9753202d00b3bdbbda6e66b42aab00a4440e81ff (diff) | |
download | gdb-8095b665cb218ed8d9a617362fec29d570250a8a.zip gdb-8095b665cb218ed8d9a617362fec29d570250a8a.tar.gz gdb-8095b665cb218ed8d9a617362fec29d570250a8a.tar.bz2 |
* as.c (emulation_name): Remove unused static variable.
(default_emul_bfd_name): Add return NULL to avoid warning.
* ecoff.c (ecoff_stab): Remove unused variables name and
name_end.
* frags.c (frag_new): Remove unused variable tmp.
* hash.c (hash_grow): Parenthesize + within <<.
(hash_print_statistics): Use %lu, not %d, to print unsigned
long variables.
* messages.c: Include "libiberty.h".
(fprint_value): Add cast to avoid printf warning.
(sprint_value): Likewise.
* read.c: Include "ecoff.h".
(emit_expr): Add casts to avoid printf warnings.
* read.h: Use extern for function declarations.
(pop_insert): Declare.
* stabs.c: Include "ecoff.h".
* subsegs.c (subseg_set_rest): Remove unused variables tmp,
former_last_fragP, and new_fragP.
* subsegs.h (subsegs_print_statistics): Declare.
* symbols.c (debug_verify_symchain): Change macro to discard
arguments.
* write.c (dump_section_relocs): Likewise.
* write.h: Use extern for function declarations.
(write_print_statistics): Declare.
* config/e-mipsecoff.c (mipsecoff_bfd_name): Return NULL to avoid
warning.
* config/e-mipself.c (mipself_bfd_name): Likewise.
* config/obj-elf.h (elf_ecoff_set_ext): Declare.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r-- | gas/symbols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/symbols.c b/gas/symbols.c index bee5b9a..b1212cb 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -46,7 +46,7 @@ symbolS abs_symbol; #ifdef DEBUG_SYMS #define debug_verify_symchain verify_symbol_chain #else -#define debug_verify_symchain (void) +#define debug_verify_symchain(root, last) ((void) 0) #endif struct obstack notes; @@ -173,7 +173,7 @@ colon (sym_name) /* just seen "x:" - rattle symbols & frags */ /* Sun local labels go out of scope whenever a non-local symbol is defined. */ - if (LOCAL_LABELS_DOLLAR && *sym_name != 'L') + if (LOCAL_LABELS_DOLLAR && ! LOCAL_LABEL (sym_name)) dollar_label_clear (); #ifndef WORKING_DOT_WORD |