diff options
author | Ian Lance Taylor <iant@google.com> | 2010-09-15 21:00:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-09-15 21:00:18 +0000 |
commit | 06730c5d14d81a26842428dc85ff9e9849dba96f (patch) | |
tree | 865a8ef45598374d33d3e95df614866ce3dd350c /gcc/c-family | |
parent | 619b56bce29d307b2ad49669fcfbeb3565f5e33e (diff) | |
download | gcc-06730c5d14d81a26842428dc85ff9e9849dba96f.zip gcc-06730c5d14d81a26842428dc85ff9e9849dba96f.tar.gz gcc-06730c5d14d81a26842428dc85ff9e9849dba96f.tar.bz2 |
c-common.c (parse_optimize_options): Remove period at end of warning message.
* c-common.c (parse_optimize_options): Remove period at end of
warning message.
From-SVN: r164317
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/c-family/c-common.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 804a93a..7d5821c 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,7 +1,7 @@ 2010-09-15 Ian Lance Taylor <iant@google.com> * c-common.c (parse_optimize_options): Do not capitalize warning - messages. + messages. Remove period at end of warning message. 2010-09-09 Nathan Sidwell <nathan@codesourcery.com> diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index 8231fb8..cf2fe17 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -7730,7 +7730,7 @@ parse_optimize_options (tree args, bool attr_p) ret = false; if (attr_p) warning (OPT_Wattributes, - "bad option %s to optimize attribute.", p); + "bad option %s to optimize attribute", p); else warning (OPT_Wpragmas, "bad option %s to pragma attribute", p); |