diff options
Diffstat (limited to 'contrib/gcc/genconstants.c')
-rw-r--r-- | contrib/gcc/genconstants.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/contrib/gcc/genconstants.c b/contrib/gcc/genconstants.c index 9208f0c..a49c547 100644 --- a/contrib/gcc/genconstants.c +++ b/contrib/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. @@ -26,22 +26,21 @@ Boston, MA 02111-1307, USA. */ look at insn patterns, only (define_constants), and we want to minimize dependencies. */ -#include "hconfig.h" +#include "bconfig.h" #include "system.h" +#include "coretypes.h" +#include "tm.h" #include "rtl.h" #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; @@ -51,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; |