Backported from mainline
2019-06-21 Jakub Jelinek <jakub@redhat.com>
PR c++/90950
* semantics.c (finish_omp_clauses): Don't reject references to
incomplete types if processing_template_decl.
* g++.dg/gomp/lastprivate-1.C: New test.
From-SVN: r272801
+2019-06-29 Jakub Jelinek <jakub@redhat.com>
+
+ Backported from mainline
+ 2019-06-21 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/90950
+ * semantics.c (finish_omp_clauses): Don't reject references to
+ incomplete types if processing_template_decl.
+
2019-06-12 Marek Polacek <polacek@redhat.com>
PR c++/90825 - endless recursion when evaluating sizeof.
t = require_complete_type (t);
if (t == error_mark_node)
remove = true;
- else if (TYPE_REF_P (TREE_TYPE (t))
+ else if (!processing_template_decl
+ && TYPE_REF_P (TREE_TYPE (t))
&& !complete_type_or_else (TREE_TYPE (TREE_TYPE (t)), t))
remove = true;
}
2019-06-29 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
+ 2019-06-21 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/90950
+ * g++.dg/gomp/lastprivate-1.C: New test.
+
2019-06-12 Jakub Jelinek <jakub@redhat.com>
PR c/90760
--- /dev/null
+// PR c++/90950
+// { dg-do compile }
+
+template <typename T>
+T
+foo (void)
+{
+ T y = 0;
+ T &x = y;
+ #pragma omp parallel for lastprivate (x)
+ for (int i = 0; i < 8; ++i)
+ x = i;
+ return x;
+}
+
+int a = foo<int> ();