IVOPTS dump fall-out

* tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
	and PRIu64 in printf format.

From-SVN: r236208
This commit is contained in:
Martin Liska 2016-05-13 14:51:29 +02:00 committed by Martin Liska
parent 0f33a54eaf
commit 7549163c15
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2016-05-13 Martin Liska <mliska@suse.cz>
* tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
and PRIu64 in printf format.
2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in

View file

@ -7046,9 +7046,9 @@ create_new_ivs (struct ivopts_data *data, struct iv_ca *set)
if (data->loop_loc != UNKNOWN_LOCATION)
fprintf (dump_file, " at %s:%d", LOCATION_FILE (data->loop_loc),
LOCATION_LINE (data->loop_loc));
fprintf (dump_file, ", %lu avg niters",
fprintf (dump_file, ", " HOST_WIDE_INT_PRINT_DEC " avg niters",
avg_loop_niter (data->current_loop));
fprintf (dump_file, ", %lu expressions",
fprintf (dump_file, ", %" PRIu64 " expressions",
set->used_inv_exprs->elements ());
fprintf (dump_file, ", %lu IVs:\n", bitmap_count_bits (set->cands));
EXECUTE_IF_SET_IN_BITMAP (set->cands, 0, i, bi)