From 79bf11708959326424d36c7701e5a49502af8f5a Mon Sep 17 00:00:00 2001 From: Luis Machado Date: Wed, 23 May 2018 22:49:34 +0000 Subject: Fix bootstrap breakage on i686 gcc/ChangeLog: 2018-05-23 Luis Machado * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Use correct type modifier for printing the step amount. From-SVN: r260629 --- gcc/tree-ssa-loop-prefetch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree-ssa-loop-prefetch.c') diff --git a/gcc/tree-ssa-loop-prefetch.c b/gcc/tree-ssa-loop-prefetch.c index c3e7fd1..e34b78d 100644 --- a/gcc/tree-ssa-loop-prefetch.c +++ b/gcc/tree-ssa-loop-prefetch.c @@ -1012,8 +1012,8 @@ should_issue_prefetch_p (struct mem_ref *ref) { if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, - "Step for reference %u:%u (%ld) is less than the mininum " - "required stride of %d\n", + "Step for reference %u:%u (" HOST_WIDE_INT_PRINT_DEC + ") is less than the mininum required stride of %d\n", ref->group->uid, ref->uid, int_cst_value (ref->group->step), PREFETCH_MINIMUM_STRIDE); return false; -- cgit v1.1