From: Gabriel Dos Reis Date: Tue, 1 May 2001 08:19:45 +0000 (+0000) Subject: diagnostic.def: New file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d0e66dbb95b7d611428f4974aebf0d3ac320ff41;p=gcc.git diagnostic.def: New file. * diagnostic.def: New file. * diagnostic.h (diagnostic_t): New enum. * Makefile.in (diagnostic.o): Depend on diagnostic.def From-SVN: r41717 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 938667d5555..711faeb5357 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-05-01 Gabriel Dos Reis + + * diagnostic.def: New file. + * diagnostic.h (diagnostic_t): New enum. + * Makefile.in (diagnostic.o): Depend on diagnostic.def + 2001-04-30 Zack Weinberg * tsystem.h: Test only POSIX for availability of string.h diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5365f7c4b25..4788db4392a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1371,7 +1371,7 @@ stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h \ function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H) $(TM_P_H) fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h toplev.h \ $(EXPR_H) $(RTL_H) $(GGC_H) $(TM_P_H) -diagnostic.o : diagnostic.c diagnostic.h \ +diagnostic.o : diagnostic.c diagnostic.h diagnostic.def \ $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) $(TM_P_H) flags.h \ $(GGC_H) input.h $(INSN_ATTR_H) insn-config.h toplev.h intl.h toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) function.h \ diff --git a/gcc/diagnostic.def b/gcc/diagnostic.def new file mode 100644 index 00000000000..07aa49564dc --- /dev/null +++ b/gcc/diagnostic.def @@ -0,0 +1,7 @@ +DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "Fatal error: ") +DEFINE_DIAGNOSTIC_KIND (DK_ICE, "Internal compiler error: ") +DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "Sorry, unimplemented: ") +DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "Error: ") +DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "Warning: ") +DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "Anachronism: ") +DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "Note: ") diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h index eb7594e16fc..68092adee3f 100644 --- a/gcc/diagnostic.h +++ b/gcc/diagnostic.h @@ -31,6 +31,16 @@ typedef void (*diagnostic_starter_fn) PARAMS ((output_buffer *, diagnostic_context *)); typedef diagnostic_starter_fn diagnostic_finalizer_fn; +typedef enum +{ +#define DEFINE_DIAGNOSTIC_KIND(K, M) K, +#include "diagnostic.def" +#undef DEFINE_DIAGNOSTIC_KIND + DK_LAST_DIAGNOSTIC_KIND +} diagnostic_t; + +#define pedantic_error_kind() (flag_pedantic_errors ? DK_ERROR : DK_WARNING) + #define DIAGNOSTICS_SHOW_PREFIX_ONCE 0x0 #define DIAGNOSTICS_SHOW_PREFIX_NEVER 0x1 #define DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE 0x2