diff options
author | Richard Biener <rguenther@suse.de> | 2016-07-21 12:25:00 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2016-07-21 12:25:00 +0000 |
commit | 01771d4361d3fc7e89e292db5f15aa11783e7ec7 (patch) | |
tree | 6ccb528b6e7bd8484f44e339a0245205bba13e7e /gcc/tree-parloops.c | |
parent | c7880c8c9220bd7cad0a711130417fd34c7d8497 (diff) | |
download | gcc-01771d4361d3fc7e89e292db5f15aa11783e7ec7.zip gcc-01771d4361d3fc7e89e292db5f15aa11783e7ec7.tar.gz gcc-01771d4361d3fc7e89e292db5f15aa11783e7ec7.tar.bz2 |
function-tests.c (build_trivial_generic_function): Set BLOCK_SUPERCONTEXT of DECL_INITIAL.
2016-07-21 Richard Biener <rguenther@suse.de>
* function-tests.c (build_trivial_generic_function): Set
BLOCK_SUPERCONTEXT of DECL_INITIAL.
* omp-low.c (create_omp_child_function): Likewise.
(grid_expand_target_grid_body): Likewise.
* cgraphunit.c (init_lowered_empty_function): Likewise.
(cgraph_node::expand_thunk): Likewise.
* tree-parloops.c (create_loop_fn): Likewise.
* ipa.c (cgraph_build_static_cdtor_1): Likewise.
cp/
* vtable-class-hierarchy.c (vtv_generate_init_routine): Set
DECL_IGNORED_P.
java/
* jcf-parse.c (java_emit_static_constructor): Set
BLOCK_SUPERCONTEXT of DECL_INITIAL.
From-SVN: r238589
Diffstat (limited to 'gcc/tree-parloops.c')
-rw-r--r-- | gcc/tree-parloops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index 1303ffc..a160152 100644 --- a/gcc/tree-parloops.c +++ b/gcc/tree-parloops.c @@ -1476,6 +1476,7 @@ create_loop_fn (location_t loc) DECL_EXTERNAL (decl) = 0; DECL_CONTEXT (decl) = NULL_TREE; DECL_INITIAL (decl) = make_node (BLOCK); + BLOCK_SUPERCONTEXT (DECL_INITIAL (decl)) = decl; t = build_decl (loc, RESULT_DECL, NULL_TREE, void_type_node); DECL_ARTIFICIAL (t) = 1; |