Commit 9cc65f15 by Richard Sandiford Committed by Richard Sandiford

c-pretty-print.c (pp_c_character_constant): Remove unnecessary wchar_type and host_integerp checks.

gcc/c-family/
	* c-pretty-print.c (pp_c_character_constant): Remove unnecessary
	wchar_type and host_integerp checks.

From-SVN: r204847
parent 6b58915b
2013-11-15 Richard Sandiford <rdsandiford@googlemail.com>
* c-pretty-print.c (pp_c_character_constant): Remove unnecessary
wchar_type and host_integerp checks.
2013-11-14 Andrew MacLeod <amacleod@redhat.com>
* c-common.c: Likewise.
......
......@@ -950,14 +950,8 @@ pp_c_integer_constant (c_pretty_printer *pp, tree i)
static void
pp_c_character_constant (c_pretty_printer *pp, tree c)
{
tree type = TREE_TYPE (c);
if (type == wchar_type_node)
pp_character (pp, 'L');
pp_quote (pp);
if (host_integerp (c, TYPE_UNSIGNED (type)))
pp_c_char (pp, tree_low_cst (c, TYPE_UNSIGNED (type)));
else
pp_scalar (pp, "\\x%x", (unsigned) TREE_INT_CST_LOW (c));
pp_c_char (pp, (unsigned) TREE_INT_CST_LOW (c));
pp_quote (pp);
}
......
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