Commit d7fc8c14 by Richard Guenther Committed by Richard Biener

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
parent f2164f87
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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment