+2017-01-25 Richard Biener <rguenther@suse.de>
+
+ PR debug/78363
+ * omp-expand.c: Include debug.h.
+ (expand_omp_taskreg): Make sure to generate early debug before
+ outlining anything from a function.
+ (expand_omp_target): Likewise.
+ (grid_expand_target_grid_body): Likewise.
+
2017-01-25 Maxim Ostapenko <m.ostapenko@samsung.com>
PR lto/79061
#include "gomp-constants.h"
#include "gimple-pretty-print.h"
#include "hsa-common.h"
+#include "debug.h"
/* OMP region information. Every parallel and workshare
else
block = gimple_block (entry_stmt);
+ /* Make sure to generate early debug for the function before
+ outlining anything. */
+ if (! gimple_in_ssa_p (cfun))
+ (*debug_hooks->early_global_decl) (cfun->decl);
+
new_bb = move_sese_region_to_fn (child_cfun, entry_bb, exit_bb, block);
if (exit_bb)
single_succ_edge (new_bb)->flags = EDGE_FALLTHRU;
gsi_remove (&gsi, true);
}
+ /* Make sure to generate early debug for the function before
+ outlining anything. */
+ if (! gimple_in_ssa_p (cfun))
+ (*debug_hooks->early_global_decl) (cfun->decl);
+
/* Move the offloading region into CHILD_CFUN. */
block = gimple_block (entry_stmt);
init_tree_ssa (cfun);
pop_cfun ();
+ /* Make sure to generate early debug for the function before
+ outlining anything. */
+ if (! gimple_in_ssa_p (cfun))
+ (*debug_hooks->early_global_decl) (cfun->decl);
+
tree old_parm_decl = DECL_ARGUMENTS (kern_fndecl);
gcc_assert (!DECL_CHAIN (old_parm_decl));
tree new_parm_decl = copy_node (DECL_ARGUMENTS (kern_fndecl));
+2017-01-25 Richard Biener <rguenther@suse.de>
+
+ PR debug/78363
+ * g++.dg/gomp/pr78363-1.C: New testcase.
+ * g++.dg/gomp/pr78363-2.C: Likewise.
+ * g++.dg/gomp/pr78363-3.C: Likewise.
+
2016-01-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gcc.dg/lto/pr54709_0.c: Require 'shared' effective target.
--- /dev/null
+// { dg-do compile }
+// { dg-require-effective-target c++11 }
+// { dg-additional-options "-g" }
+
+int main()
+{
+ int n = 0;
+
+#pragma omp parallel for reduction (+: n)
+ for (int i = [](){ return 3; }(); i < 10; ++i)
+ n++;
+
+ return n;
+}
--- /dev/null
+// { dg-do compile }
+// { dg-require-effective-target c++11 }
+// { dg-additional-options "-g" }
+
+int main()
+{
+ int n = 0;
+#pragma omp target map(tofrom:n)
+#pragma omp for reduction (+: n)
+ for (int i = [](){ return 3; }(); i < 10; ++i)
+ n++;
+ if (n != 7)
+ __builtin_abort ();
+ return 0;
+}
--- /dev/null
+// { dg-do compile }
+// { dg-require-effective-target c++11 }
+// { dg-additional-options "-g" }
+
+int main()
+{
+ int n = 0;
+#pragma omp task shared (n)
+ for (int i = [](){ return 3; }(); i < 10; ++i)
+ n = i;
+#pragma omp taskwait
+ if (n != 7)
+ __builtin_abort ();
+}