aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cp/ChangeLog7
-rw-r--r--gcc/cp/decl.c1
-rw-r--r--gcc/cp/pt.c4
-rw-r--r--gcc/testsuite/ChangeLog3
-rw-r--r--gcc/testsuite/g++.dg/cpp1z/decomp25.C20
5 files changed, 34 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index d032028..9889c17 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,10 @@
+2017-02-06 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/79372
+ * decl.c (cp_finish_decomp): On error set decl type to error_mark_node.
+ * pt.c (tsubst_expr): Don't call tsubst_decomp_names on decompositions
+ with error_mark_node type.
+
2017-02-03 Jason Merrill <jason@redhat.com>
PR c++/78689 - ICE on constructor with label
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index 9bdfd4f..d1d485a 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -7378,6 +7378,7 @@ cp_finish_decomp (tree decl, tree first, unsigned int count)
}
first = DECL_CHAIN (first);
}
+ TREE_TYPE (decl) = error_mark_node;
if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
return;
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 4c4941a..6072432 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -15765,7 +15765,9 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
(pattern_decl));
cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
- if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
+ if (VAR_P (decl)
+ && DECL_DECOMPOSITION_P (decl)
+ && TREE_TYPE (pattern_decl) != error_mark_node)
{
unsigned int cnt;
tree first;
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8e9b5fa..954851b 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,8 @@
2017-02-06 Jakub Jelinek <jakub@redhat.com>
+ PR c++/79372
+ * g++.dg/cpp1z/decomp25.C: New test.
+
PR tree-optimization/79284
* gcc.c-torture/compile/pr79284.c: New test.
diff --git a/gcc/testsuite/g++.dg/cpp1z/decomp25.C b/gcc/testsuite/g++.dg/cpp1z/decomp25.C
new file mode 100644
index 0000000..c992736
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1z/decomp25.C
@@ -0,0 +1,20 @@
+// PR c++/79372
+// { dg-do compile { target c++11 } }
+// { dg-options "" }
+
+template <typename T>
+struct S
+{
+ enum E { A };
+ void f () { auto [x] = 0; x++; } // { dg-error "cannot decompose non-array non-class type" }
+ // { dg-warning "decomposition declaration only available with" "" { target c++14_down } .-1 }
+ void g (T t) { auto [y] = t; y++; } // { dg-error "cannot decompose non-array non-class type" }
+}; // { dg-warning "decomposition declaration only available with" "" { target c++14_down } .-1 }
+
+int
+main ()
+{
+ S <int> s;
+ s.f ();
+ s.g (5);
+}