/* We do not need the leftover chaining of namespaces from the
binding level. */
DECL_CHAIN (t) = NULL_TREE;
+ /* Set DECL_VALUE_EXPRs of OpenMP privatized member artificial
+ decls to error_mark_node. These are DECL_IGNORED_P and after
+ OpenMP lowering they aren't useful anymore. Clearing DECL_VALUE_EXPR
+ doesn't work, as expansion could then consider them as something
+ to be expanded. */
+ if (VAR_P (t)
+ && DECL_LANG_SPECIFIC (t)
+ && DECL_OMP_PRIVATIZED_MEMBER (t)
+ && DECL_IGNORED_P (t))
+ SET_DECL_VALUE_EXPR (t, error_mark_node);
}
/* Stub for c-common. Please keep in sync with c-decl.c.
-2018-23-01 Paul Thomas <pault@gcc.gnu.org>
+2018-01-23 Jakub Jelinek <jakub@redhat.com>
+
+ PR sanitizer/83987
+ * g++.dg/ubsan/pr83987.C: New test.
+
+2018-01-23 Paul Thomas <pault@gcc.gnu.org>
PR fortran/83866
- * gfortran.dg/pdt_29.f03 : New test.
+ * gfortran.dg/pdt_29.f03: New test.
-2018-23-01 Paul Thomas <pault@gcc.gnu.org>
+2018-01-23 Paul Thomas <pault@gcc.gnu.org>
PR fortran/83898
- * gfortran.dg/associate_33.f03 : New test.
+ * gfortran.dg/associate_33.f03: New test.
2018-01-23 Martin Liska <mliska@suse.cz>
2018-01-13 Paul Thomas <pault@gcc.gnu.org>
PR fortran/52162
- * gfortran.dg/bounds_check_19.f90 : New test.
+ * gfortran.dg/bounds_check_19.f90: New test.
2018-01-12 Jakub Jelinek <jakub@redhat.com>
2018-01-08 Paul Thomas <pault@gcc.gnu.org>
PR fortran/83611
- * gfortran.dg/pdt_15.f03 : Bump count of 'n.data = 0B' to 8.
- * gfortran.dg/pdt_26.f03 : Bump count of '_malloc' to 9.
- * gfortran.dg/pdt_27.f03 : New test.
+ * gfortran.dg/pdt_15.f03: Bump count of 'n.data = 0B' to 8.
+ * gfortran.dg/pdt_26.f03: Bump count of '_malloc' to 9.
+ * gfortran.dg/pdt_27.f03: New test.
PR fortran/83731
- * gfortran.dg/pdt_28.f03 : New test.
+ * gfortran.dg/pdt_28.f03: New test.
2018-01-08 Tom de Vries <tom@codesourcery.com>
2018-01-01 Paul Thomas <pault@gcc.gnu.org>
PR fortran/83076
- * gfortran.dg/coarray_45.f90 : New test.
+ * gfortran.dg/coarray_45.f90: New test.
PR fortran/83319
- * gfortran.dg/coarray_46.f90 : New test.
+ * gfortran.dg/coarray_46.f90: New test.
2018-01-01 Jakub Jelinek <jakub@redhat.com>