PR c++/70824 - initializer_list in template
authorJason Merrill <jason@redhat.com>
Fri, 15 Jul 2016 18:37:48 +0000 (14:37 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 15 Jul 2016 18:37:48 +0000 (14:37 -0400)
* init.c (constant_value_1): Don't instantiated DECL_INITIAL of
artificial variables.

From-SVN: r238386

gcc/cp/ChangeLog
gcc/cp/init.c
gcc/testsuite/g++.dg/cpp0x/initlist-template1.C [new file with mode: 0644]

index f85a33332812c721b040f5b724ec83a5d4e782b0..81f0a24ec457eca5f26718686a7fd03329485dfa 100644 (file)
@@ -1,3 +1,9 @@
+2016-07-15  Jason Merrill  <jason@redhat.com>
+
+       PR c++/70824
+       * init.c (constant_value_1): Don't instantiated DECL_INITIAL of
+       artificial variables.
+
 2016-07-15  Cesar Philippidis  <cesar@codesourcery.com>
 
        * parser.c (cp_parser_oacc_declare): Don't scan for
index b4a4388d705b9f3616aacda527228210edb19d6f..604763927cc4828a594d2194cbe2b61cdf18a9e9 100644 (file)
@@ -2073,8 +2073,13 @@ constant_value_1 (tree decl, bool strict_p, bool return_aggregate_cst_ok_p)
          && TREE_CODE (init) == TREE_LIST
          && TREE_CHAIN (init) == NULL_TREE)
        init = TREE_VALUE (init);
-      /* Instantiate a non-dependent initializer.  */
-      init = instantiate_non_dependent_or_null (init);
+      /* Instantiate a non-dependent initializer for user variables.  We
+        mustn't do this for the temporary for an array compound literal;
+        trying to instatiate the initializer will keep creating new
+        temporaries until we crash.  Probably it's not useful to do it for
+        other artificial variables, either.  */
+      if (!DECL_ARTIFICIAL (decl))
+       init = instantiate_non_dependent_or_null (init);
       if (!init
          || !TREE_TYPE (init)
          || !TREE_CONSTANT (init)
diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist-template1.C b/gcc/testsuite/g++.dg/cpp0x/initlist-template1.C
new file mode 100644 (file)
index 0000000..a24e205
--- /dev/null
@@ -0,0 +1,15 @@
+// PR c++/70824
+// { dg-do compile { target c++11 } }
+
+#include <initializer_list>
+
+constexpr
+int
+max(std::initializer_list<int> __l)
+{ return *__l.begin(); }
+
+template <class Src>
+void
+a() {
+  const int v =  max({1});
+}