diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-03-20 19:21:31 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-03-20 19:21:31 +0000 |
commit | 54ea1de9f39a10a4f329c8f3c4a54ad8cd31d8fa (patch) | |
tree | ccbeb8c4f275846b9aaf9e86072c1f0572291df3 /gcc/local-alloc.c | |
parent | 59d40964295f794d4ea7fc0d9a459c4ffccda9f9 (diff) | |
download | gcc-54ea1de9f39a10a4f329c8f3c4a54ad8cd31d8fa.tar.gz |
Warning fixes:
* c-lex.c (yylex): Remove unused variable `bytes'.
* flow.c (print_rtl_with_bb): Cast the return value of alloca.
* function.c (assign_parms): Wrap variable `varargs_setup' in
macro SETUP_INCOMING_VARARGS.
(thread_prologue_and_epilogue_insns): Mark parameter `f' with
ATTRIBUTE_UNUSED.
* local-alloc.c (no_equiv): Likewise for parameter `store'.
* sched.c (schedule_insns): Remove unused variables `insn' and `next'.
* tlink.c (symbol_hash_newfunc, symbol_hash_lookup,
file_hash_newfunc, file_hash_lookup, demangled_hash_newfunc,
demangled_hash_lookup, symbol_push, symbol_pop, file_push,
file_pop, tlink_init, tlink_execute, frob_extension,
obstack_fgets, tfgets, pfgets, freadsym, read_repo_file,
maybe_tweak, recompile_files, read_repo_files,
demangle_new_symbols, scan_linker_output): Add static prototype.
(symbol_hash_newfunc, file_hash_newfunc, demangled_hash_newfunc):
Make the third argument a `hash_table_key'.
* toplev.c (debug_start_source_file): Mark parameter `filename'
with ATTRIBUTE_UNUSED.
From-SVN: r25871
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index d3dde6b7555..598d405198f 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -983,7 +983,7 @@ update_equiv_regs () but needs to be there because this function is called from note_stores. */ static void no_equiv (reg, store) - rtx reg, store; + rtx reg, store ATTRIBUTE_UNUSED; { int regno; rtx list; |