diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 08:19:45 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 08:19:45 +0000 |
commit | 79bef68a6134e3fa11987fcfe062ee9d485ab720 (patch) | |
tree | bea048da7d41258ee20ceed8c9c226b67223be00 /gcc/diagnostic.def | |
parent | 2dd170664417e841c498544b913082be2d79195c (diff) | |
download | gcc-79bef68a6134e3fa11987fcfe062ee9d485ab720.tar.gz |
* diagnostic.def: New file.
* diagnostic.h (diagnostic_t): New enum.
* Makefile.in (diagnostic.o): Depend on diagnostic.def
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41717 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.def')
-rw-r--r-- | gcc/diagnostic.def | 7 |
1 files changed, 7 insertions, 0 deletions
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: ") |