Searched refs:init_decl (Results 1 – 2 of 2) sorted by relevance
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | class.c | 857 tree init_decl; local 859 init_decl = build_decl (FUNCTION_DECL, init_name, init_type); 860 SET_DECL_ASSEMBLER_NAME (init_decl, init_name); 861 TREE_STATIC (init_decl) = 1; 862 current_function_decl = init_decl; 863 DECL_RESULT (init_decl) = build_decl (RESULT_DECL, 868 TREE_PUBLIC (init_decl) = ! targetm.have_ctors_dtors; 871 make_decl_rtl (init_decl, NULL); 872 init_function_start (init_decl, input_filename, 0); 873 expand_function_start (init_decl, 0); [all …]
|
| H A D | expr.c | 2523 tree temp, value, init_decl; local 2537 init_decl = build_decl (VAR_DECL, generate_name (), array_type); 2538 pushdecl_top_level (init_decl); 2539 TREE_STATIC (init_decl) = 1; 2540 DECL_INITIAL (init_decl) = value; 2541 DECL_IGNORED_P (init_decl) = 1; 2542 TREE_READONLY (init_decl) = 1; 2545 DECL_ALIGN (init_decl) = 64; 2546 rest_of_decl_compilation (init_decl, NULL, 1, 0); 2547 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (init_decl)) = 1; [all …]
|