This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: cpplib: Start moving switch handling to front ends
- From: Devang Patel <dpatel at apple dot com>
- To: Neil Booth <neil at daikokuya dot co dot uk>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Wed, 7 Aug 2002 16:58:11 -0700
- Subject: Re: cpplib: Start moving switch handling to front ends
On Wednesday, August 7, 2002, at 02:14 PM, Neil Booth wrote:
+ case OPT_Wimport:
+ cpp_opts->warn_import = on;
+ break;
I was thinking about proposing a trivial patch to disable this
warning by default. Because #import is not deprecated and
widely used in darwin land. What is your opinion about this?
I am also preparing a patch to introduce one new warning flag,
-Wno-#warnings, to disable #warning messages. Is it a good idea?
-Devang