Fix bootstrap breakage on i686
authorLuis Machado <luis.machado@linaro.org>
Wed, 23 May 2018 22:49:34 +0000 (22:49 +0000)
committerLuis Machado <luisgpm@gcc.gnu.org>
Wed, 23 May 2018 22:49:34 +0000 (22:49 +0000)
gcc/ChangeLog:

2018-05-23  Luis Machado  <luis.machado@linaro.org>

* tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Use correct type
modifier for printing the step amount.

From-SVN: r260629

gcc/ChangeLog
gcc/tree-ssa-loop-prefetch.c

index df282da..267def9 100644 (file)
@@ -1,3 +1,8 @@
+2018-05-23  Luis Machado  <luis.machado@linaro.org>
+
+       * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Use correct type
+       modifier for printing the step amount.
+
 2018-05-23  Jozef Lawrynowicz  <jozef.l@somniumtech.com>
 
        PR target/78849
index c3e7fd1..e34b78d 100644 (file)
@@ -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;