re PR c++/80991 (ICE with __is_trivially_constructible in template)
authorPaolo Carlini <paolo.carlini@oracle.com>
Tue, 24 Oct 2017 16:41:05 +0000 (16:41 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 24 Oct 2017 16:41:05 +0000 (16:41 +0000)
/cp
2017-10-24  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/80991
* pt.c (value_dependent_expression_p, [TRAIT_EXPR]): Handle
a TREE_LIST as TRAIT_EXPR_TYPE2.

/testsuite
2017-10-24  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/80991
* g++.dg/ext/is_trivially_constructible5.C: New.

From-SVN: r254051

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/is_trivially_constructible5.C [new file with mode: 0644]

index 8228c8f..e24a194 100644 (file)
@@ -1,3 +1,9 @@
+2017-10-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/80991
+       * pt.c (value_dependent_expression_p, [TRAIT_EXPR]): Handle
+       a TREE_LIST as TRAIT_EXPR_TYPE2.
+
 2017-10-24  Mukesh Kapoor  <mukesh.kapoor@oracle.com>
            Paolo Carlini  <paolo.carlini@oracle.com>
 
index ba52f3b..be39da7 100644 (file)
@@ -24019,8 +24019,21 @@ value_dependent_expression_p (tree expression)
     case TRAIT_EXPR:
       {
        tree type2 = TRAIT_EXPR_TYPE2 (expression);
-       return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
-               || (type2 ? dependent_type_p (type2) : false));
+
+       if (dependent_type_p (TRAIT_EXPR_TYPE1 (expression)))
+         return true;
+
+       if (!type2)
+         return false;
+
+       if (TREE_CODE (type2) != TREE_LIST)
+         return dependent_type_p (type2);
+
+       for (; type2; type2 = TREE_CHAIN (type2))
+         if (dependent_type_p (TREE_VALUE (type2)))
+           return true;
+
+       return false;
       }
 
     case MODOP_EXPR:
index 42fff12..edf21e9 100644 (file)
@@ -1,3 +1,8 @@
+2017-10-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/80991
+       * g++.dg/ext/is_trivially_constructible5.C: New.
+
 2017-10-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * gcc.target/i386/387-ficom-1.c: Allow for ficomp without s
diff --git a/gcc/testsuite/g++.dg/ext/is_trivially_constructible5.C b/gcc/testsuite/g++.dg/ext/is_trivially_constructible5.C
new file mode 100644 (file)
index 0000000..15ea336
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/80991
+// { dg-do compile { target c++11 } }
+
+template<bool> void foo()
+{
+  static_assert(__is_trivially_constructible(int, int), "");
+}
+
+void bar()
+{
+  foo<true>();
+}