Home
last modified time | relevance | path

Searched refs:tparser (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-parser.c21782 c_parser tparser; in c_parse_file() local
21784 memset (&tparser, 0, sizeof tparser); in c_parse_file()
21785 tparser.translate_strings_p = true; in c_parse_file()
21786 tparser.tokens = &tparser.tokens_buf[0]; in c_parse_file()
21787 the_parser = &tparser; in c_parse_file()
21789 if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS) in c_parse_file()
21790 c_parser_pragma_pch_preprocess (&tparser); in c_parse_file()
21795 *the_parser = tparser; in c_parse_file()
21796 if (tparser.tokens == &tparser.tokens_buf[0]) in c_parse_file()
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-parser.cc23351 c_parser tparser; in c_parse_file() local
23353 memset (&tparser, 0, sizeof tparser); in c_parse_file()
23354 tparser.translate_strings_p = true; in c_parse_file()
23355 tparser.tokens = &tparser.tokens_buf[0]; in c_parse_file()
23356 the_parser = &tparser; in c_parse_file()
23358 if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS) in c_parse_file()
23359 c_parser_pragma_pch_preprocess (&tparser); in c_parse_file()
23364 *the_parser = tparser; in c_parse_file()
23365 if (tparser.tokens == &tparser.tokens_buf[0]) in c_parse_file()
H A DChangeLog7931 (c_parse_file): Initialize tparser.tokens and the_parser->tokens here.