Balaji Viswanathan Iyer <[EMAIL PROTECTED]> writes:
> I am trying to understand GCC further, and I would like to know how
> GCC calls the parser from the main function in gcc.c.
The gcc driver execs another program, which for C is called cc1. The
main function in cc1 winds up calling the pa
Hello Everyone,
I am trying to understand GCC further, and I would like to know how
GCC calls the parser from the main function in gcc.c. I looked at the
YACC/BISON file and found that c_parse_file called yyparse(). Can
anyone please tell me which function calls c_parse_file and how I can
get