diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-01 15:59:10 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-01 15:59:10 +0000 |
commit | 1a97be37b9acd218052a467f7b1a26d3be1154f9 (patch) | |
tree | 1ed2af1b719c9ea42b10268e89af837f6cc20554 /gcc/genconstants.c | |
parent | 157ed81477280b70dd98c8ffdec26b827d15bdfa (diff) | |
download | gcc-1a97be37b9acd218052a467f7b1a26d3be1154f9.tar.gz |
* genrecog.c: Use ISO C90 prototypes.
(nodes_identical): Correct declaration to match prototype.
(maybe_both_true): Likewise.
(merge_trees): Likewise.
* genpeep.c (gen_peephole): Remove #if 0 code.
Use ISO C90 prototypes.
* genattrtab.c (copy_rtx_unchanging): Remove #if 0'ed code.
Remove #if 0'ed function simplify_by_alternatives.
(optimize_attrs): Remove #if 0'ed code.
Remove ^L.
Use ISO C90 prototypes.
(make_canonical): Remove #if 0'ed code.
(convert_const_symbol_ref): Remove #if 0'ed function.
* gen-protos.c (main): Check for argument.
* rtl.h: Use ISO C90 prototypes for functions from lists.c.
* params.h: Use ISO C90 prototypes.
* params.c: Likewise.
* intl.c: Likewise.
* intl.h: Likewise.
* lists.c: Likewise.
* errors.c: Likewise.
* errors.h: Likewise.
* gencodes.c: Likewise.
* genpreds.c: Likewise.
* genattr.c: Likewise.
* gen-protos.c: Likewise.
* genflags.c: Likewise
* genconditions.c: Likewise.
* genautomata.c: Likewise.
* gencheck.c: Likewise.
* genconfig.c: Likewise.
* genconstants.c: Likewise.
* genemit.c: Likewise.
* genextract.c: Likewise.
* gengenrtl.c: Likewise.
* gengtype.c: Likewise.
* gengtype.h: Likewise.
* genopinit.c: Likewise.
* genoutput.c: Likewise.
* gensupport.c: Likewise.
* gensupport.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67296 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconstants.c')
-rw-r--r-- | gcc/genconstants.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gcc/genconstants.c b/gcc/genconstants.c index 1c08040f8ec..a49c5476d25 100644 --- a/gcc/genconstants.c +++ b/gcc/genconstants.c @@ -2,8 +2,8 @@ a series of #define statements, one for each constant named in a (define_constants ...) pattern. - Copyright (C) 1987, 1991, 1995, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1987, 1991, 1995, 1998, 1999, 2000, 2001, 2003 + Free Software Foundation, Inc. This file is part of GCC. @@ -34,16 +34,13 @@ Boston, MA 02111-1307, USA. */ #include "errors.h" #include "gensupport.h" -static int print_md_constant PARAMS ((void **, void *)); -extern int main PARAMS ((int, char **)); +static int print_md_constant (void **, void *); /* Called via traverse_md_constants; emit a #define for the current constant definition. */ static int -print_md_constant (slot, info) - void **slot; - void *info; +print_md_constant (void **slot, void *info) { struct md_constant *def = *slot; FILE *file = info; @@ -53,9 +50,7 @@ print_md_constant (slot, info) } int -main (argc, argv) - int argc; - char **argv; +main (int argc, char **argv) { int dummy1, dummy2; rtx desc; |