diff options
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r-- | gcc/omp-low.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 048c879..c9600fb 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -2570,6 +2570,7 @@ create_omp_child_function (omp_context *ctx, bool task_copy) it afterward. */ push_struct_function (decl); cfun->function_end_locus = gimple_location (ctx->stmt); + init_tree_ssa (cfun); pop_cfun (); } @@ -13672,6 +13673,7 @@ grid_expand_target_grid_body (struct omp_region *target) DECL_INITIAL (kern_fndecl) = fniniblock; push_struct_function (kern_fndecl); cfun->function_end_locus = gimple_location (tgt_stmt); + init_tree_ssa (cfun); pop_cfun (); tree old_parm_decl = DECL_ARGUMENTS (kern_fndecl); |