Commit 48daf828 by Richard Stallman

(print_node_brief): Use unsigned char to print

the bytes of a real constant.

From-SVN: r5917
parent 6d6e61ce
......@@ -133,7 +133,7 @@ print_node_brief (file, prefix, node, indent)
#else
{
int i;
char *p = (char *) &TREE_REAL_CST (node);
unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
fprintf (file, " 0x");
for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
fprintf (file, "%02x", *p++);
......
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