diff options
author | Gabriel Dos Reis <gdr@nerim.net> | 2002-07-30 13:48:06 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2002-07-30 13:48:06 +0000 |
commit | 7ff4a7ef7036d7356ffeb5a753581b78b824a2d6 (patch) | |
tree | ed3862a805f13d16545214c641e4aa444b424cd8 /gcc/c-pretty-print.h | |
parent | a15e868a957adedfec71a27b4ff96293eff89d18 (diff) | |
download | gcc-7ff4a7ef7036d7356ffeb5a753581b78b824a2d6.zip gcc-7ff4a7ef7036d7356ffeb5a753581b78b824a2d6.tar.gz gcc-7ff4a7ef7036d7356ffeb5a753581b78b824a2d6.tar.bz2 |
c-pretty-print.h (pp_c_statement): Declare.
* c-pretty-print.h (pp_c_statement): Declare.
* c-pretty-print.c (pp_c_postfix_expression): #if 0 support for SRCLOC.
(pp_c_statement): Define.
From-SVN: r55874
Diffstat (limited to 'gcc/c-pretty-print.h')
-rw-r--r-- | gcc/c-pretty-print.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/c-pretty-print.h b/gcc/c-pretty-print.h index 53ff32f..13bd432 100644 --- a/gcc/c-pretty-print.h +++ b/gcc/c-pretty-print.h @@ -119,8 +119,8 @@ struct c_pretty_print_info #define pp_initializer(PPI, E) (*(PPI)->initializer) (PPI, E) #define pp_multiplicative_expression(PPI, E)\ (*(PPI)->multiplicative_expression) (PPI, E) -#define pp_conditional_expession(PPI, E) \ - (*(PPI)->conditional_expression (PPI, E)) +#define pp_conditional_expression(PPI, E) \ + (*(PPI)->conditional_expression) (PPI, E) #define pp_assignment_expression(PPI, E) \ (*(PPI)->assignment_expression) (PPI, E) @@ -131,7 +131,8 @@ void pp_c_parameter_declaration_clause PARAMS ((c_pretty_print_info *, tree)); void pp_c_declaration PARAMS ((c_pretty_print_info *, tree)); void pp_c_statement PARAMS ((c_pretty_print_info *, tree)); void pp_c_expression PARAMS ((c_pretty_print_info *, tree)); - +/* Statements. */ +void pp_c_statement PARAMS ((c_pretty_print_info *, tree)); /* Expressions. */ void pp_c_expression PARAMS ((c_pretty_print_info *, tree)); void pp_c_logical_or_expression PARAMS ((c_pretty_print_info *, tree)); |