Commit 7549163c by Martin Liska Committed by Martin Liska

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
parent 0f33a54e
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
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment