diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-12 18:34:51 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-12 18:34:51 +0000 |
commit | 8e10b18fdb80b976dace5d092f60e02741bb974f (patch) | |
tree | b1a38ce7e84fb408f819801ff4a4661e61e604cb /gcc/diagnostic.def | |
parent | 9c348f2df163c8711eb9f23af92dc98e3d00c284 (diff) | |
download | gcc-8e10b18fdb80b976dace5d092f60e02741bb974f.tar.gz |
* diagnostic.h (output_formatted_scalar): Rename from
output_formatted_integer.
* diagnostic.def: Add DK_DEBUG.
* diagnostic.c (output_decimal): Adjust.
(output_long_decimal): Likewise.
(output_unsigned_decimal): Likewise.
(output_octal): Likewise.
(output_long_octal): Likewise.
(output_hexadecimal): Likewise.
(output_long_hexadecimal): Likewise.
* c-pretty-print.c (pp_c_type_specifier): New function.
(pp_c_specifier_qualifier_list): Likewise.
(pp_c_abstract_declarator): Likewise.
(pp_c_char): Replace pp_format_integer with pp_format_scalar.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56236 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.def')
-rw-r--r-- | gcc/diagnostic.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/diagnostic.def b/gcc/diagnostic.def index 5ac353d2636..83e5d9cae72 100644 --- a/gcc/diagnostic.def +++ b/gcc/diagnostic.def @@ -5,3 +5,5 @@ DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "error: ") DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "warning: ") DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "anachronism: ") DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "note: ") +DEFINE_DIAGNOSTIC_KIND (DK_DEBUG, "debug: ") + |