aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-02-20 12:01:09 +0100
committerMartin Liska <mliska@suse.cz>2020-02-20 12:01:09 +0100
commitf40237a37b28a4c9143bfcbf5886fc9a6d3b5cfe (patch)
treea7d915b2e70ba365d35dc5d3665e06cd8b15e8a3
parent85232b45840330df0fef81f2d4756d9a25d5ac3b (diff)
downloadgcc-f40237a37b28a4c9143bfcbf5886fc9a6d3b5cfe.zip
gcc-f40237a37b28a4c9143bfcbf5886fc9a6d3b5cfe.tar.gz
gcc-f40237a37b28a4c9143bfcbf5886fc9a6d3b5cfe.tar.bz2
Remove trailing | in help message.
PR translation/93830 * common/config/avr/avr-common.c: Remote trailing "|".
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/common/config/avr/avr-common.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f5876a3..5598830 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2020-02-20 Martin Liska <mliska@suse.cz>
+
+ PR translation/93830
+ * common/config/avr/avr-common.c: Remote trailing "|".
+
2020-02-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
* collect2.c (maybe_run_lto_and_relink): Fix typo in
diff --git a/gcc/common/config/avr/avr-common.c b/gcc/common/config/avr/avr-common.c
index 233468b..712b8cf 100644
--- a/gcc/common/config/avr/avr-common.c
+++ b/gcc/common/config/avr/avr-common.c
@@ -96,7 +96,7 @@ avr_handle_option (struct gcc_options *opts, struct gcc_options*,
{
#if !defined (HAVE_DOUBLE32)
error_at (loc, "option %<-mdouble=32%> is only available if "
- "configured %<--with-double={|32|32,64|64,32}%>");
+ "configured %<--with-double={32|32,64|64,32}%>");
#endif
}
else
@@ -121,9 +121,9 @@ avr_handle_option (struct gcc_options *opts, struct gcc_options*,
{
#if !defined (HAVE_LONG_DOUBLE32)
error_at (loc, "option %<-mlong-double=32%> is only available if "
- "configured %<--with-long-double={|32|32,64|64,32}%>, "
+ "configured %<--with-long-double={32|32,64|64,32}%>, "
"or %<--with-long-double=double%> together with "
- "%<--with-double={|32|32,64|64,32}%>");
+ "%<--with-double={32|32,64|64,32}%>");
#endif
opts->x_avr_double = 32;
}