Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dparse.c446 static tree build_bc_statement PARAMS ((int, int, tree));
4849 { yyval.node = build_bc_statement (yyvsp[-1].operator.location, 1, NULL_TREE); } in yyparse()
4854 { yyval.node = build_bc_statement (yyvsp[-2].operator.location, 1, yyvsp[-1].node); } in yyparse()
4869 { yyval.node = build_bc_statement (yyvsp[-1].operator.location, 0, NULL_TREE); } in yyparse()
4874 { yyval.node = build_bc_statement (yyvsp[-2].operator.location, 0, yyvsp[-1].node); } in yyparse()
18849 build_bc_statement (location, is_break, name) in build_bc_statement() function
H A Dparse.y206 static tree build_bc_statement PARAMS ((int, int, tree));
1801 { $$ = build_bc_statement ($1.location, 1, NULL_TREE); }
1803 { $$ = build_bc_statement ($1.location, 1, $2); }
1812 { $$ = build_bc_statement ($1.location, 0, NULL_TREE); }
1814 { $$ = build_bc_statement ($1.location, 0, $2); }
15284 build_bc_statement (location, is_break, name) in build_bc_statement() function
H A DChangeLog11813 (build_bc_statement): Enable debug information on break/continue
12115 build_bc_statement, patch_bc_statement, patch_loop_statement,
12160 complete_loop_body, patch_loop_statement, build_bc_statement,