Commit e5b04038 by Jakub Jelinek Committed by Jakub Jelinek

tree-ssa-strlen.c (maybe_invalidate): Use HOST_WIDE_INT_PRINT_UNSIGNED instead of "%zu".

	* tree-ssa-strlen.c (maybe_invalidate): Use
	HOST_WIDE_INT_PRINT_UNSIGNED instead of "%zu".

From-SVN: r277083
parent 3599dfba
2019-10-16 Jakub Jelinek <jakub@redhat.com>
* tree-ssa-strlen.c (maybe_invalidate): Use
HOST_WIDE_INT_PRINT_UNSIGNED instead of "%zu".
2019-10-16 Andrew Burgess <andrew.burgess@embecosm.com> 2019-10-16 Andrew Burgess <andrew.burgess@embecosm.com>
Jim Wilson <jimw@sifive.com> Jim Wilson <jimw@sifive.com>
......
...@@ -1130,7 +1130,8 @@ maybe_invalidate (gimple *stmt, bool zero_write = false) ...@@ -1130,7 +1130,8 @@ maybe_invalidate (gimple *stmt, bool zero_write = false)
{ {
if (size && tree_fits_uhwi_p (size)) if (size && tree_fits_uhwi_p (size))
fprintf (dump_file, fprintf (dump_file,
" statement may clobber string %zu long\n", " statement may clobber string "
HOST_WIDE_INT_PRINT_UNSIGNED " long\n",
tree_to_uhwi (size)); tree_to_uhwi (size));
else else
fprintf (dump_file, fprintf (dump_file,
......
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