summaryrefslogtreecommitdiff
path: root/libgomp/ChangeLog
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2011-05-19 09:44:31 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2011-05-19 09:44:31 +0200
commit4577f7309a8b7c410e1ebe350250398997f0a8df (patch)
tree6ab10bfd313ec6b9af503559d01810292772524a /libgomp/ChangeLog
parentd1e5eb3ef68e87807a6046d8746cf262d42c7394 (diff)
downloadgcc-4577f7309a8b7c410e1ebe350250398997f0a8df.tar.gz
re PR c++/48869 (OpenMP task construct fails to instantiate copy constructor(same as Bug 36523))
PR c++/48869 * method.c (get_dtor, get_copy_ctor): Add COMPLAIN argument, pass it down to locate_fn_flags. * cp-tree.h (get_dtor, get_copy_ctor): Adjust prototypes. * semantics.c (cxx_omp_create_clause_info): Adjust callers. * cp-gimplify.c: Include splay-tree.h. (splay_tree_compare_decl_uid, omp_var_to_track, omp_cxx_notice_variable): New functions. (struct cp_genericize_omp_taskreg): New type. (struct cp_genericize_data): Add omp_ctx field. (cp_genericize_r): Attempt to determine implicitly determined firstprivate class type variables. (cp_genericize): Clear omp_ctx. * Make-lang.in (cp/cp-gimplify.o): Depend on $(SPLAY_TREE_H). * testsuite/libgomp.c++/pr48869.C: New test. From-SVN: r173888
Diffstat (limited to 'libgomp/ChangeLog')
-rw-r--r--libgomp/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 416ddc412da..97382893917 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-19 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/48869
+ * testsuite/libgomp.c++/pr48869.C: New test.
+
2011-05-06 Jakub Jelinek <jakub@redhat.com>
PR fortran/48894