re PR c++/61151 (ICE with lambda)
authorJason Merrill <jason@redhat.com>
Tue, 13 May 2014 17:54:00 +0000 (13:54 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 13 May 2014 17:54:00 +0000 (13:54 -0400)
PR c++/61151
* semantics.c (is_this_parameter): Allow capture proxies too.

From-SVN: r210394

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

index ca07527..a26472c 100644 (file)
@@ -1,3 +1,8 @@
+2014-05-13  Jason Merrill  <jason@redhat.com>
+
+       PR c++/61151
+       * semantics.c (is_this_parameter): Allow capture proxies too.
+
 2014-05-12  Jason Merrill  <jason@redhat.com>
 
        * call.c (maybe_print_user_conv_context): New.
index d925f5c..583b870 100644 (file)
@@ -8158,8 +8158,10 @@ maybe_initialize_constexpr_call_table (void)
 bool
 is_this_parameter (tree t)
 {
-  return (TREE_CODE (t) == PARM_DECL
-         && DECL_NAME (t) == this_identifier);
+  if (!DECL_P (t) || DECL_NAME (t) != this_identifier)
+    return false;
+  gcc_assert (TREE_CODE (t) == PARM_DECL || is_capture_proxy (t));
+  return true;
 }
 
 /* We have an expression tree T that represents a call, either CALL_EXPR
diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this18.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this18.C
new file mode 100644 (file)
index 0000000..fec2da6
--- /dev/null
@@ -0,0 +1,30 @@
+// PR c++/61151
+// { dg-do compile { target c++11 } }
+
+struct B
+{
+  void foo () {}
+};
+
+template <class>
+struct A
+{
+  template <class> void bar ();
+  B a;
+};
+
+template <class T>
+template <class U>
+void
+A<T>::bar ()
+{
+  auto f = [this] () { auto g = [=] () { a.foo (); }; g (); };
+  f ();
+}
+
+int
+main ()
+{
+  A<int> a;
+  a.bar <int> ();
+}