summaryrefslogtreecommitdiff
path: root/gcc/gensupport.h
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-01 15:59:10 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-01 15:59:10 +0000
commit1a97be37b9acd218052a467f7b1a26d3be1154f9 (patch)
tree1ed2af1b719c9ea42b10268e89af837f6cc20554 /gcc/gensupport.h
parent157ed81477280b70dd98c8ffdec26b827d15bdfa (diff)
downloadgcc-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/gensupport.h')
-rw-r--r--gcc/gensupport.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/gensupport.h b/gcc/gensupport.h
index 8dbd0b70ea9..7ceccfbaeb1 100644
--- a/gcc/gensupport.h
+++ b/gcc/gensupport.h
@@ -1,5 +1,5 @@
/* Declarations for rtx-reader support for gen* routines.
- Copyright (C) 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
This file is part of GCC.
@@ -24,11 +24,11 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
struct obstack;
extern struct obstack *rtl_obstack;
-extern int init_md_reader_args PARAMS ((int, char **));
-extern int init_md_reader PARAMS ((const char *));
-extern rtx read_md_rtx PARAMS ((int *, int *));
+extern int init_md_reader_args (int, char **);
+extern int init_md_reader (const char *);
+extern rtx read_md_rtx (int *, int *);
-extern void message_with_line PARAMS ((int, const char *, ...))
+extern void message_with_line (int, const char *, ...)
ATTRIBUTE_PRINTF_2;
/* Set this to 0 to disable automatic elision of insn patterns which
@@ -46,7 +46,7 @@ extern const int insn_elision_unavailable;
time, return its truth value; else return -1. The test must have
appeared somewhere in the machine description when genconditions
was run. */
-extern int maybe_eval_c_test PARAMS ((const char *));
+extern int maybe_eval_c_test (const char *);
/* This table should not be accessed directly; use maybe_eval_c_test. */
struct c_test
@@ -59,11 +59,11 @@ extern const struct c_test insn_conditions[];
extern const size_t n_insn_conditions;
#ifdef __HASHTAB_H__
-extern hashval_t hash_c_test PARAMS ((const PTR));
-extern int cmp_c_test PARAMS ((const PTR, const PTR));
+extern hashval_t hash_c_test (const void *);
+extern int cmp_c_test (const void *, const void *);
#endif
-extern int n_comma_elts PARAMS ((const char *));
-extern const char *scan_comma_elt PARAMS ((const char **));
+extern int n_comma_elts (const char *);
+extern const char *scan_comma_elt (const char **);
#endif /* GCC_GENSUPPORT_H */