c-pretty-print.c (pp_c_type_specifier): Use pp_c_identifier to print a IDENTIFIER_NODE.
2011-06-10 Richard Guenther <rguenther@suse.de> c-family/ * c-pretty-print.c (pp_c_type_specifier): Use pp_c_identifier to print a IDENTIFIER_NODE. From-SVN: r174892
This commit is contained in:
parent
f2164f876f
commit
d7fc8c140e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-06-10 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* c-pretty-print.c (pp_c_type_specifier): Use pp_c_identifier
|
||||
to print a IDENTIFIER_NODE.
|
||||
|
||||
2011-06-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
|
|
|
@ -345,7 +345,7 @@ pp_c_type_specifier (c_pretty_printer *pp, tree t)
|
|||
break;
|
||||
|
||||
case IDENTIFIER_NODE:
|
||||
pp_c_tree_decl_identifier (pp, t);
|
||||
pp_c_identifier (pp, IDENTIFIER_POINTER (t));
|
||||
break;
|
||||
|
||||
case VOID_TYPE:
|
||||
|
|
Loading…
Add table
Reference in a new issue