diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-26 23:55:35 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-26 23:55:35 +0000 |
commit | ea3cfc819a358ef6d7118ce84120296c522093e9 (patch) | |
tree | 9b64e8e1b70efa6e623c5ec361caacd348cd3fd6 /gcc | |
parent | fcf956c038da796ddbeddad8c58f0b8aa80f75ed (diff) | |
download | gcc-ea3cfc819a358ef6d7118ce84120296c522093e9.zip gcc-ea3cfc819a358ef6d7118ce84120296c522093e9.tar.gz gcc-ea3cfc819a358ef6d7118ce84120296c522093e9.tar.bz2 |
(ivar_decls): Give a pedwarn (instead of a warning) for excess semicolons.
From-SVN: r3545
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-parse.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index 494cdac..8103a5d 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -2095,7 +2095,7 @@ ivar_decls: | ivar_decls ';' { if (pedantic) - warning ("extra semicolon in struct or union specified"); + pedwarn ("extra semicolon in struct or union specified"); } ; |