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
This commit is contained in:
parent
3599dfbaa2
commit
e5b04038ed
@ -1,3 +1,8 @@
|
|||||||
|
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)
|
|||||||
{
|
{
|
||||||
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,
|
||||||
|
Loading…
Reference in New Issue
Block a user