summaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2006-11-08 19:50:49 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2006-11-08 19:50:49 +0000
commite4a7b8dc026207d55b713ade4709e30858293212 (patch)
treef350af1ae59bfbd3362f3ab4bde43d84a83659f6 /gcc/tree-pretty-print.c
parentb7c3385d2fab234ab5fe3bac76eda1fa78b72f76 (diff)
downloadgcc-e4a7b8dc026207d55b713ade4709e30858293212.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118597 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index ddc84f374de..bca6c00ffaa 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -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);