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/genconditions.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/genconditions.c')
-rw-r--r-- | gcc/genconditions.c | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/gcc/genconditions.c b/gcc/genconditions.c index 412f1f1d588..fc55d1c9dd2 100644 --- a/gcc/genconditions.c +++ b/gcc/genconditions.c @@ -1,5 +1,5 @@ /* Process machine description and calculate constant conditions. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -40,20 +40,17 @@ static int saw_eh_return; static htab_t condition_table; -static void add_condition PARAMS ((const char *)); -static void write_header PARAMS ((void)); -static void write_conditions PARAMS ((void)); -static int write_one_condition PARAMS ((PTR *, PTR)); - -extern int main PARAMS ((int, char **)); +static void add_condition (const char *); +static void write_header (void); +static void write_conditions (void); +static int write_one_condition (void **, void *); /* Record the C test expression EXPR in the condition_table. Duplicates clobber previous entries, which leaks memory, but we don't care for this application. */ static void -add_condition (expr) - const char *expr; +add_condition (const char *expr) { struct c_test *test; @@ -69,7 +66,7 @@ add_condition (expr) /* Generate the header for insn-conditions.c. */ static void -write_header () +write_header (void) { puts ("\ /* Generated automatically by the program `genconditions' from the target\n\ @@ -122,7 +119,7 @@ write_header () extern rtx insn;\n\ extern rtx ins1;\n\ extern rtx operands[];\n\ -extern int next_insn_tests_no_inequality PARAMS ((rtx));\n"); +extern int next_insn_tests_no_inequality (rtx);\n"); puts ("\ /* If we don't have __builtin_constant_p, or it's not acceptable in\n\ @@ -142,9 +139,7 @@ extern int next_insn_tests_no_inequality PARAMS ((rtx));\n"); MAYBE_EVAL (! optimize_size && ! TARGET_READ_MODIFY_WRITE) }, */ static int -write_one_condition (slot, dummy) - PTR *slot; - PTR dummy ATTRIBUTE_UNUSED; +write_one_condition (void **slot, void *dummy ATTRIBUTE_UNUSED) { const struct c_test *test = * (const struct c_test **) slot; const char *p; @@ -167,7 +162,7 @@ write_one_condition (slot, dummy) /* Write out the complete conditions table, its size, and a flag indicating that gensupport.c can now do insn elision. */ static void -write_conditions () +write_conditions (void) { puts ("\ /* This table lists each condition found in the machine description.\n\ @@ -186,9 +181,7 @@ const struct c_test insn_conditions[] = {"); } int -main (argc, argv) - int argc; - char **argv; +main (int argc, char **argv) { rtx desc; int pattern_lineno; /* not used */ |