From 3d7aafde11a808a69874f94903bb045882b66c11 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 1 Jun 2003 17:59:10 +0200 Subject: genrecog.c: Use ISO C90 prototypes. * 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. From-SVN: r67296 --- gcc/errors.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'gcc/errors.c') diff --git a/gcc/errors.c b/gcc/errors.c index 4147b3f..6cbc29c 100644 --- a/gcc/errors.c +++ b/gcc/errors.c @@ -1,5 +1,6 @@ /* Basic error reporting routines. - Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001, 2003 + Free Software Foundation, Inc. This file is part of GCC. @@ -42,7 +43,7 @@ void warning (const char *format, ...) { va_list ap; - + va_start (ap, format); fprintf (stderr, "%s: warning: ", progname); vfprintf (stderr, format, ap); @@ -57,7 +58,7 @@ void error (const char *format, ...) { va_list ap; - + va_start (ap, format); fprintf (stderr, "%s: ", progname); vfprintf (stderr, format, ap); @@ -74,7 +75,7 @@ void fatal (const char *format, ...) { va_list ap; - + va_start (ap, format); fprintf (stderr, "%s: ", progname); vfprintf (stderr, format, ap); @@ -89,7 +90,7 @@ void internal_error (const char *format, ...) { va_list ap; - + va_start (ap, format); fprintf (stderr, "%s: Internal error: ", progname); vfprintf (stderr, format, ap); @@ -105,8 +106,7 @@ internal_error (const char *format, ...) version if for the gen* programs and so needn't handle subdirectories. */ const char * -trim_filename (name) - const char *name; +trim_filename (const char *name) { static const char this_file[] = __FILE__; const char *p = name, *q = this_file; @@ -130,10 +130,7 @@ trim_filename (name) This file is used only by build programs, so we're not as polite as the version in diagnostic.c. */ void -fancy_abort (file, line, func) - const char *file; - int line; - const char *func; +fancy_abort (const char *file, int line, const char *func) { internal_error ("abort in %s, at %s:%d", func, file, line); } -- cgit v1.1