diff options
Diffstat (limited to 'gcc/c-family/c-pretty-print.h')
-rw-r--r-- | gcc/c-family/c-pretty-print.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/c-family/c-pretty-print.h b/gcc/c-family/c-pretty-print.h index 9e95e143ca0..573b25b317f 100644 --- a/gcc/c-family/c-pretty-print.h +++ b/gcc/c-family/c-pretty-print.h @@ -57,6 +57,7 @@ struct c_pretty_printer : pretty_printer virtual void constant (tree); virtual void id_expression (tree); virtual void primary_expression (tree); + virtual void postfix_expression (tree); /* Points to the first element of an array of offset-list. Not used yet. */ int *offset_list; @@ -82,7 +83,6 @@ struct c_pretty_printer : pretty_printer c_pretty_print_fn statement; - c_pretty_print_fn postfix_expression; c_pretty_print_fn unary_expression; c_pretty_print_fn multiplicative_expression; c_pretty_print_fn conditional_expression; @@ -115,7 +115,7 @@ struct c_pretty_printer : pretty_printer #define pp_constant(PP, E) (PP)->constant (E) #define pp_id_expression(PP, E) (PP)->id_expression (E) #define pp_primary_expression(PP, E) (PP)->primary_expression (E) -#define pp_postfix_expression(PP, E) (PP)->postfix_expression (PP, E) +#define pp_postfix_expression(PP, E) (PP)->postfix_expression (E) #define pp_unary_expression(PP, E) (PP)->unary_expression (PP, E) #define pp_initializer(PP, E) (PP)->initializer (PP, E) #define pp_multiplicative_expression(PP, E) \ @@ -169,7 +169,6 @@ void pp_c_constructor_elts (c_pretty_printer *, vec<constructor_elt, va_gc> *); void pp_c_call_argument_list (c_pretty_printer *, tree); void pp_c_unary_expression (c_pretty_printer *, tree); void pp_c_cast_expression (c_pretty_printer *, tree); -void pp_c_postfix_expression (c_pretty_printer *, tree); void pp_c_init_declarator (c_pretty_printer *, tree); void pp_c_ws_string (c_pretty_printer *, const char *); void pp_c_identifier (c_pretty_printer *, const char *); |