diff options
Diffstat (limited to 'gcc/tree-phinodes.c')
-rw-r--r-- | gcc/tree-phinodes.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tree-phinodes.c b/gcc/tree-phinodes.c index 9bdb8d5..48397a1 100644 --- a/gcc/tree-phinodes.c +++ b/gcc/tree-phinodes.c @@ -80,8 +80,9 @@ unsigned int phi_nodes_created; void phinodes_print_statistics (void) { - fprintf (stderr, "PHI nodes allocated: %u\n", phi_nodes_created); - fprintf (stderr, "PHI nodes reused: %u\n", phi_nodes_reused); + fprintf (stderr, "PHI nodes allocated: %u%c\n", + SIZE_AMOUNT (phi_nodes_created)); + fprintf (stderr, "PHI nodes reused: %u%c\n", SIZE_AMOUNT (phi_nodes_reused)); } /* Allocate a PHI node with at least LEN arguments. If the free list |