diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-04-13 12:47:53 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-04-13 12:47:53 -0400 |
commit | dab9b3bf3db81366921edab2c8fb5bed9bd84a3c (patch) | |
tree | 4a8cae2a44b980dd9893b573d4a360c6f0532737 /gcc | |
parent | c7710c1f46741beb220c56edfacd97c8c322fec5 (diff) | |
download | gcc-dab9b3bf3db81366921edab2c8fb5bed9bd84a3c.zip gcc-dab9b3bf3db81366921edab2c8fb5bed9bd84a3c.tar.gz gcc-dab9b3bf3db81366921edab2c8fb5bed9bd84a3c.tar.bz2 |
(c_decode_option): Ignore -Wundef, -Wno-undef.
From-SVN: r13875
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-decl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index f9860e2..2559521 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -723,6 +723,10 @@ c_decode_option (p) ; /* cpp handles this one. */ else if (!strcmp (p, "-Wno-trigraphs")) ; /* cpp handles this one. */ + else if (!strcmp (p, "-Wundef")) + ; /* cpp handles this one. */ + else if (!strcmp (p, "-Wno-undef")) + ; /* cpp handles this one. */ else if (!strcmp (p, "-Wimport")) ; /* cpp handles this one. */ else if (!strcmp (p, "-Wno-import")) |