PR translation/79998 - typo in diagnostic "specified bound %wu"

gcc/ChangeLog:
	* gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
	Remove a stray space.

From-SVN: r251096
This commit is contained in:
Martin Sebor 2017-08-14 16:47:40 +00:00 committed by Martin Sebor
parent 2912db04c1
commit 3a66f91348
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2017-08-14 Martin Sebor <msebor@redhat.com>
PR translation/79998
* gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
Remove a stray space.
2017-08-14 Uros Bizjak <ubizjak@gmail.com>
PR target/46091

View File

@ -3868,7 +3868,7 @@ pass_sprintf_length::handle_gimple_call (gimple_stmt_iterator *gsi)
}
else if (dstsize > target_int_max ())
warning_at (gimple_location (info.callstmt), info.warnopt (),
"specified bound %wu exceeds %<INT_MAX %>",
"specified bound %wu exceeds %<INT_MAX%>",
dstsize);
}
else if (TREE_CODE (size) == SSA_NAME)