diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2019-10-12 18:31:42 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2019-10-12 18:31:42 +0000 |
commit | b6941da896f23c8a30c93469b237350615f52721 (patch) | |
tree | 1d59da75dc22986a8bc5efdca4673044f1c05448 | |
parent | 9aa357c75358a51f038e50f7c8d9207b58c157e0 (diff) | |
download | gcc-b6941da896f23c8a30c93469b237350615f52721.zip gcc-b6941da896f23c8a30c93469b237350615f52721.tar.gz gcc-b6941da896f23c8a30c93469b237350615f52721.tar.bz2 |
pa.c (pa_option_override): Remove trailing comma from warning.
* gcc/config/pa/pa.c (pa_option_override): Remove trailing comma
from warning.
From-SVN: r276920
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 800b8ce..bce36a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-10-12 John David Anglin <danglin@gcc.gnu.org> + + * gcc/config/pa/pa.c (pa_option_override): Remove trailing comma + from warning. + 2019-10-12 Jakub Jelinek <jakub@redhat.com> PR middle-end/92063 diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 4f48c41..a11362b 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -535,7 +535,7 @@ pa_option_override (void) if (! TARGET_GAS && write_symbols != NO_DEBUG) { - warning (0, "%<-g%> is only supported when using GAS on this processor,"); + warning (0, "%<-g%> is only supported when using GAS on this processor"); warning (0, "%<-g%> option disabled"); write_symbols = NO_DEBUG; } |