Commit 79bf1170 by Luis Machado Committed by Luis Machado

Fix bootstrap breakage on i686

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
parent 49d729ea
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> 2018-05-23 Jozef Lawrynowicz <jozef.l@somniumtech.com>
PR target/78849 PR target/78849
......
...@@ -1012,8 +1012,8 @@ should_issue_prefetch_p (struct mem_ref *ref) ...@@ -1012,8 +1012,8 @@ should_issue_prefetch_p (struct mem_ref *ref)
{ {
if (dump_file && (dump_flags & TDF_DETAILS)) if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, fprintf (dump_file,
"Step for reference %u:%u (%ld) is less than the mininum " "Step for reference %u:%u (" HOST_WIDE_INT_PRINT_DEC
"required stride of %d\n", ") is less than the mininum required stride of %d\n",
ref->group->uid, ref->uid, int_cst_value (ref->group->step), ref->group->uid, ref->uid, int_cst_value (ref->group->step),
PREFETCH_MINIMUM_STRIDE); PREFETCH_MINIMUM_STRIDE);
return false; return false;
......
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