Commit 3a66f913 by Martin Sebor Committed by Martin Sebor

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
parent 2912db04
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
......
......@@ -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)
......
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