summaryrefslogtreecommitdiff
path: root/gcc/c-pretty-print.h
diff options
context:
space:
mode:
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-18 08:25:12 +0000
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-18 08:25:12 +0000
commitd7b8e04e33f7f3d5ddd023ca695ca2f4e0eb1a8a (patch)
treefdbd03638ca28d0078d1a7f42225d33c7a199b20 /gcc/c-pretty-print.h
parent956ed13ee30b6f0a3e898c51f4e953e28f78df00 (diff)
downloadgcc-d7b8e04e33f7f3d5ddd023ca695ca2f4e0eb1a8a.tar.gz
* c-pretty-print.h (pp_type_specifier_seq): Fix thinko.
* c-pretty-print.c: Fix formatting. (pp_c_integer_constant): Append type annotation to literals. Tidy. (pp_c_type_specifier): Tidy. (pp_c_compound_literal): New function. (pp_c_initializer): Simplify.. (pp_c_initializer_list): Likewise. (pp_c_brace_enclosed_initializer_list): New function. (pp_c_postfix_expression): Simplify. cp/ * error.c (dump_type): Simplify. Use pp_type_specifier_seq for "C" types. * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Fix thinko. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71511 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-pretty-print.h')
-rw-r--r--gcc/c-pretty-print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-pretty-print.h b/gcc/c-pretty-print.h
index 2bc1dbc168a..26b3cae99c7 100644
--- a/gcc/c-pretty-print.h
+++ b/gcc/c-pretty-print.h
@@ -106,7 +106,7 @@ struct c_pretty_print_info
#define pp_abstract_declarator(PP, D) \
pp_c_base (PP)->abstract_declarator (pp_c_base (PP), D)
#define pp_type_specifier_seq(PPI, D) \
- pp_c_base (PPI)->type_specifie_seqr (pp_c_base (PPI), D)
+ pp_c_base (PPI)->type_specifier_seq (pp_c_base (PPI), D)
#define pp_declarator(PPI, D) \
pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
#define pp_direct_declarator(PPI, D) \