aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2017-08-14 16:47:40 +0000
committerMartin Sebor <msebor@gcc.gnu.org>2017-08-14 10:47:40 -0600
commit3a66f91348d7d83fd211e664379940a60c462a21 (patch)
tree508e3d0af1bd66e305ccabc9b1546d864af6aaff
parent2912db04c1091e5b6a0fd8a464d9ec8a2c5a1fb6 (diff)
downloadgcc-3a66f91348d7d83fd211e664379940a60c462a21.zip
gcc-3a66f91348d7d83fd211e664379940a60c462a21.tar.gz
gcc-3a66f91348d7d83fd211e664379940a60c462a21.tar.bz2
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
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/gimple-ssa-sprintf.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4c147b0..feae522 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/gimple-ssa-sprintf.c b/gcc/gimple-ssa-sprintf.c
index 644cf7e..519e996 100644
--- a/gcc/gimple-ssa-sprintf.c
+++ b/gcc/gimple-ssa-sprintf.c
@@ -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)