X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fstat%2Fstat_dmp.c;h=96e237b5e723b2386782791f2a4bc0286f4f2297;hb=0ba6d24830420634f69caa4c0b947bbdd8955346;hp=b343fe42f7492dc83511b7519bb7e0e30d270245;hpb=fc80e89b7d176590d74e02ddad62481e7275a7c0;p=libfirm diff --git a/ir/stat/stat_dmp.c b/ir/stat/stat_dmp.c index b343fe42f..96e237b5e 100644 --- a/ir/stat/stat_dmp.c +++ b/ir/stat/stat_dmp.c @@ -21,7 +21,6 @@ * @file * @brief Statistics for Firm. Dumping. * @author Michael Beck - * @version $Id$ */ #include "config.h" @@ -471,7 +470,7 @@ static void simple_dump_edges(dumper_t *dmp, counter_t *cnt) */ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry) { - int i, dump_opts = 1; + int dump_opts = 1; block_entry_t *b_entry; extbb_entry_t *eb_entry; @@ -480,6 +479,7 @@ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry) if (entry->irg) { ir_graph *const_irg = get_const_code_irg(); + int i; if (entry->irg == const_irg) fprintf(dmp->f, "\nConst code Irg %p", (void *)entry->irg); @@ -553,7 +553,7 @@ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry) /* effects of optimizations */ if (dump_opts) { - int i; + size_t i; simple_dump_real_func_calls(dmp, &entry->cnt[gcnt_acc_real_func_call]); simple_dump_tail_recursion(dmp, entry->num_tail_recursion); @@ -651,7 +651,8 @@ static void dump_tbl_line(const distrib_entry_t *entry, void *env) { dumper_t *dmp = (dumper_t*)env; - fprintf(dmp->f, "%d : %u\n", PTR_TO_INT(entry->object), cnt_to_uint(&entry->cnt)); + fprintf(dmp->f, "%ld : %u\n", (long int)PTR_TO_INT(entry->object), + cnt_to_uint(&entry->cnt)); } /* dump_tbl_line */ /**