OSDN Git Service

PR c++/47687
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 May 2011 19:32:07 +0000 (19:32 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 May 2011 19:32:07 +0000 (19:32 +0000)
* pt.c (dependent_type_p_r): Avoid infinite recursion.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174354 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nested4.C [new file with mode: 0644]

index 19ef7ca..edc1421 100644 (file)
@@ -1,5 +1,8 @@
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
+       PR c++/47687
+       * pt.c (dependent_type_p_r): Avoid infinite recursion.
+
        PR c++/48284
        * error.c (dump_expr) [COMPONENT_REF]: Use pp_cxx_dot
        with INDIRECT_REF of REFERENCE_TYPE.
        PR c++/48284
        * error.c (dump_expr) [COMPONENT_REF]: Use pp_cxx_dot
        with INDIRECT_REF of REFERENCE_TYPE.
index 71fe0a0..ae3d83d 100644 (file)
@@ -18260,8 +18260,15 @@ dependent_type_p_r (tree type)
   scope = TYPE_CONTEXT (type);
   if (scope && TYPE_P (scope))
     return dependent_type_p (scope);
   scope = TYPE_CONTEXT (type);
   if (scope && TYPE_P (scope))
     return dependent_type_p (scope);
-  else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
-    return type_dependent_expression_p (scope);
+  /* Don't use type_dependent_expression_p here, as it can lead
+     to infinite recursion trying to determine whether a lambda
+     nested in a lambda is dependent (c++/47687).  */
+  else if (scope && TREE_CODE (scope) == FUNCTION_DECL
+          && DECL_LANG_SPECIFIC (scope)
+          && DECL_TEMPLATE_INFO (scope)
+          && (any_dependent_template_arguments_p
+              (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
+    return true;
 
   /* Other types are non-dependent.  */
   return false;
 
   /* Other types are non-dependent.  */
   return false;
index d034def..841a202 100644 (file)
@@ -1,5 +1,7 @@
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
+       * g++.dg/cpp0x/lambda/lambda-nested4.C: New.
+
        * g++.dg/cpp0x/error6.C: New.
 
        * g++.dg/cpp0x/error5.C: New.
        * g++.dg/cpp0x/error6.C: New.
 
        * g++.dg/cpp0x/error5.C: New.
diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nested4.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nested4.C
new file mode 100644 (file)
index 0000000..a5bd1a2
--- /dev/null
@@ -0,0 +1,9 @@
+// PR c++/47687
+// { dg-options -std=c++0x }
+
+template <class T> struct A { };
+
+auto inl = []{ return []{}; }();
+typedef decltype(inl) inlt;
+
+A<inlt> a;