Lines Matching refs:substmt
8159 tree stmt, substmt; in c_parser_omp_sections_scope() local
8175 substmt = push_stmt_list (); in c_parser_omp_sections_scope()
8189 substmt = pop_stmt_list (substmt); in c_parser_omp_sections_scope()
8190 substmt = build1 (OMP_SECTION, void_type_node, substmt); in c_parser_omp_sections_scope()
8191 SET_EXPR_LOCATION (substmt, loc); in c_parser_omp_sections_scope()
8192 add_stmt (substmt); in c_parser_omp_sections_scope()
8215 substmt = c_parser_omp_structured_block (parser); in c_parser_omp_sections_scope()
8216 substmt = build1 (OMP_SECTION, void_type_node, substmt); in c_parser_omp_sections_scope()
8217 SET_EXPR_LOCATION (substmt, loc); in c_parser_omp_sections_scope()
8218 add_stmt (substmt); in c_parser_omp_sections_scope()
8223 substmt = pop_stmt_list (stmt); in c_parser_omp_sections_scope()
8227 OMP_SECTIONS_BODY (stmt) = substmt; in c_parser_omp_sections_scope()