(print_node_brief): Use unsigned char to print

the bytes of a real constant.

From-SVN: r5917
This commit is contained in:
Richard Stallman 1993-10-27 06:40:44 +00:00
parent 6d6e61ceba
commit 48daf82891

View File

@ -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++);