This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Fix cpp ICE (regression from 2.95.x or 3.0.4)
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Neil Booth <neil at daikokuya dot demon dot co dot uk>
- Cc: mark at codesourcery dot com, zack at codesourcery dot com, gcc-patches at gcc dot gnu dot org
- Date: Fri, 3 May 2002 06:39:26 -0400
- Subject: Re: [PATCH] Fix cpp ICE (regression from 2.95.x or 3.0.4)
- References: <20020501072335.C23056@devserv.devel.redhat.com> <20020503103655.GA17218@daikokuya.demon.co.uk>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Fri, May 03, 2002 at 11:36:56AM +0100, Neil Booth wrote:
> Please apply to 3.0.5 as well if you've not already.
Will do.
> > case 'M':
> > CPP_OPTION (pfile, dump_macros) = dump_only;
> > - CPP_OPTION (pfile, no_output) = 1;
> > break;
>
> Shouldn't you be handling the -MM case too?
No, this is -dM case, not -M.
Both -M and -MM are still setting no_output to 1.
Jakub