Re: Files containing the grammar for C and C++

2005-07-06 Thread James E Wilson
Stephen Torri wrote: I am interested in reading the actual grammar files used for parsing C and C++ programming languages inside gcc. Where are these files located? See cp/parser.c for the C++ parser. The c-parse files are only for C and Objective-C. -- Jim Wilson, GNU Tools Support, http://

Re: Files containing the grammar for C and C++

2005-07-01 Thread Stephen Torri
On Sat, 2005-07-02 at 11:40 +1000, Russell Shaw wrote: > Stephen Torri wrote: > > I am interested in reading the actual grammar files used for parsing C > > and C++ programming languages inside gcc. Where are these files located? > > > > Stephen > > gcc-3.4.3/gcc/c-parse.in > gcc-3.4.3/gcc/c-pars

Re: Files containing the grammar for C and C++

2005-07-01 Thread Russell Shaw
Stephen Torri wrote: I am interested in reading the actual grammar files used for parsing C and C++ programming languages inside gcc. Where are these files located? Stephen gcc-3.4.3/gcc/c-parse.in gcc-3.4.3/gcc/c-parse.y

Files containing the grammar for C and C++

2005-07-01 Thread Stephen Torri
I am interested in reading the actual grammar files used for parsing C and C++ programming languages inside gcc. Where are these files located? Stephen