aboutsummaryrefslogtreecommitdiff
path: root/gcc/function-tests.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2016-07-21 12:25:00 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2016-07-21 12:25:00 +0000
commit01771d4361d3fc7e89e292db5f15aa11783e7ec7 (patch)
tree6ccb528b6e7bd8484f44e339a0245205bba13e7e /gcc/function-tests.c
parentc7880c8c9220bd7cad0a711130417fd34c7d8497 (diff)
downloadgcc-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/function-tests.c')
-rw-r--r--gcc/function-tests.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/function-tests.c b/gcc/function-tests.c
index a59a066..4152cd3 100644
--- a/gcc/function-tests.c
+++ b/gcc/function-tests.c
@@ -249,6 +249,7 @@ build_trivial_generic_function ()
tsi_link_after (&stmt_iter, return_stmt, TSI_CONTINUE_LINKING);
DECL_INITIAL (fndecl) = block;
+ BLOCK_SUPERCONTEXT (block) = fndecl;
/* how to add to function? the following appears to be how to
set the body of a fndecl: */