aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa.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/ipa.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/ipa.c')
-rw-r--r--gcc/ipa.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ipa.c b/gcc/ipa.c
index 2609e32..6f4693f 100644
--- a/gcc/ipa.c
+++ b/gcc/ipa.c
@@ -935,6 +935,7 @@ cgraph_build_static_cdtor_1 (char which, tree body, int priority, bool final)
DECL_UNINLINABLE (decl) = 1;
DECL_INITIAL (decl) = make_node (BLOCK);
+ BLOCK_SUPERCONTEXT (DECL_INITIAL (decl)) = decl;
TREE_USED (DECL_INITIAL (decl)) = 1;
DECL_SOURCE_LOCATION (decl) = input_location;