From 18484e9b859261589305e6c76097cca52df3b7b6 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 24 Oct 2008 13:32:06 +0000 Subject: [PATCH] - fixed output [r23170] --- ir/stat/stat_dmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/stat/stat_dmp.c b/ir/stat/stat_dmp.c index c6b654b3e..b3dad262c 100644 --- a/ir/stat/stat_dmp.c +++ b/ir/stat/stat_dmp.c @@ -198,9 +198,9 @@ static void simple_dump_opcode_hash(dumper_t *dmp, pset *set) cnt_clr(&f_Id); cnt_clr(&f_normlized); - fprintf(dmp->f, "%-16s %-8s %-8s %-8s\n", "Opcode", "alive", "created", "->Id", "normalized"); + fprintf(dmp->f, "%-16s %-8s %-8s %-8s %-8s\n", "Opcode", "alive", "created", "->Id", "normalized"); foreach_pset(set, entry) { - fprintf(dmp->f, "%-16s %8u %8u %8u\n", + fprintf(dmp->f, "%-16s %8u %8u %8u %8u\n", get_id_str(entry->op->name), cnt_to_uint(&entry->cnt_alive), cnt_to_uint(&entry->new_node), -- 2.20.1