tree-pretty-print.c (dump_generic_node): Use HOST_WIDE_INT_PRINT_DOUBLE_HEX instead of format buffer.
2006-11-08 Andrew Pinski <Andrew_Pinski@playstation.sony.com> * tree-pretty-print.c (dump_generic_node) <INTEGER_CST>: Use HOST_WIDE_INT_PRINT_DOUBLE_HEX instead of format buffer. From-SVN: r118597
This commit is contained in:
parent
e9903c672a
commit
54b12dbeb2
@ -1,3 +1,8 @@
|
||||
2006-11-08 Andrew Pinski <Andrew_Pinski@playstation.sony.com>
|
||||
|
||||
* tree-pretty-print.c (dump_generic_node) <INTEGER_CST>: Use
|
||||
HOST_WIDE_INT_PRINT_DOUBLE_HEX instead of format buffer.
|
||||
|
||||
2006-11-08 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* tree-ssa-propagate.c (set_rhs): Restructure validity tests as a
|
||||
|
@ -732,12 +732,7 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
|
||||
/* Would "%x%0*x" or "%x%*0x" get zero-padding on all
|
||||
systems? */
|
||||
{
|
||||
static char format[10]; /* "%x%09999x\0" */
|
||||
if (!format[0])
|
||||
sprintf (format, "0x%%" HOST_WIDE_INT_PRINT "x"
|
||||
"%%0%d" HOST_WIDE_INT_PRINT "x",
|
||||
HOST_BITS_PER_WIDE_INT / 4);
|
||||
sprintf (pp_buffer (buffer)->digit_buffer, format,
|
||||
sprintf (pp_buffer (buffer)->digit_buffer, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
|
||||
TREE_INT_CST_HIGH (val),
|
||||
TREE_INT_CST_LOW (val));
|
||||
pp_string (buffer, pp_buffer (buffer)->digit_buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user