diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-22 05:46:35 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-22 05:46:35 +0000 |
commit | 258304056c2e20f416a93b8df9d7eb2ae52ddd49 (patch) | |
tree | f83a23eb4104d0dc33381fd8a8b7c55683da156a /gcc/config/mips | |
parent | 77d71bdba925ab1eb35a171ab48bdc20de4d1417 (diff) | |
download | gcc-258304056c2e20f416a93b8df9d7eb2ae52ddd49.tar.gz |
Warning fixes:
* mips.c (gpr_mode): Don't say `static' twice.
* cpplib.c (cpp_handle_option): Don't pass unneeded NULL to cpp_fatal.
* objc/objc-act.c (init_selector): Hide prototype and definition.
* optabs.c (gen_cond_trap): Remove unused variable `icode'.
* regmove.c (copy_src_to_dest): Likewise for `i'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20652 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index e9ae838f1d2..8b20fc59499 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -245,7 +245,7 @@ enum mips_abicalls_type mips_abicalls; REAL_VALUE_TYPE dfhigh, dflow, sfhigh, sflow; /* Mode used for saving/restoring general purpose registers. */ -static static enum machine_mode gpr_mode; +static enum machine_mode gpr_mode; /* Array giving truth value on whether or not a given hard register can support a given mode. */ |