diff options
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c/c-objc-common.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 40b8cfa..3401228 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,7 @@ +2013-09-03 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * c-objc-common.c (c_tree_printer): Tidy. + 2013-08-30 Marek Polacek <polacek@redhat.com> * c-typeck.c (build_binary_op): Add division by zero and shift diff --git a/gcc/c/c-objc-common.c b/gcc/c/c-objc-common.c index 95eb75d..e6be6ac 100644 --- a/gcc/c/c-objc-common.c +++ b/gcc/c/c-objc-common.c @@ -120,7 +120,7 @@ c_tree_printer (pretty_printer *pp, text_info *text, const char *spec, t = DECL_DEBUG_EXPR (t); if (!DECL_P (t)) { - pp_expression (cpp, t); + cpp->expression (t); return true; } } @@ -143,12 +143,12 @@ c_tree_printer (pretty_printer *pp, text_info *text, const char *spec, if (DECL_NAME (name)) pp_identifier (cpp, lang_hooks.decl_printable_name (name, 2)); else - pp_type_id (cpp, t); + cpp->type_id (t); return true; } else { - pp_type_id (cpp, t); + cpp->type_id (t); return true; } break; @@ -157,7 +157,7 @@ c_tree_printer (pretty_printer *pp, text_info *text, const char *spec, if (TREE_CODE (t) == IDENTIFIER_NODE) pp_identifier (cpp, IDENTIFIER_POINTER (t)); else - pp_expression (cpp, t); + cpp->expression (t); return true; case 'V': |