This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [CPP] -M vs -include
- From: Zack Weinberg <zack at codesourcery dot com>
- To: Neil Booth <neil at daikokuya dot co dot uk>
- Cc: Richard Henderson <rth at redhat dot com>, gcc-patches at gcc dot gnu dot org,Roland McGrath <roland at redhat dot com>
- Date: Thu, 7 Nov 2002 15:45:08 -0800
- Subject: Re: [CPP] -M vs -include
- References: <20021102142400.A2249@redhat.com> <20021107233819.GA23967@daikokuya.co.uk>
On Thu, Nov 07, 2002 at 11:38:19PM +0000, Neil Booth wrote:
> + {
> + /* Loop in case of -included buffers. */
> + do
> + cpp_scan_nooutput (pfile);
> + while (pfile->buffer->prev
> + || pfile->buffer->cur < pfile->buffer->rlimit);
> + }
Hmm, is that brace block necessary?
zw