diff options
author | Jason Merrill <jason@redhat.com> | 2013-03-25 16:35:43 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2013-03-25 16:35:43 -0400 |
commit | 963afe1b0cfbe58c6e60a7542a851c18de556c40 (patch) | |
tree | 11fa50c2e406b26e6db7008b142f48219574175d /gcc | |
parent | bbce8a8a36ed1f3809ae785313cce483f4b044fa (diff) | |
download | gcc-963afe1b0cfbe58c6e60a7542a851c18de556c40.zip gcc-963afe1b0cfbe58c6e60a7542a851c18de556c40.tar.gz gcc-963afe1b0cfbe58c6e60a7542a851c18de556c40.tar.bz2 |
re PR c++/52014 ([c++0x] Segfault When `decltype` Used in Nested Lambda Function Defined in Class Member Function)
PR c++/52014
* semantics.c (lambda_expr_this_capture): Don't capture 'this' in
unevaluated context.
From-SVN: r197063
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/semantics.c | 10 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this14.C | 49 |
3 files changed, 60 insertions, 5 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1209a8b..bac4844 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2013-03-23 Jason Merrill <jason@redhat.com> + + PR c++/52014 + * semantics.c (lambda_expr_this_capture): Don't capture 'this' in + unevaluated context. + 2013-03-25 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56722 diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index e3aeb81..fb38e8d 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -9454,6 +9454,11 @@ lambda_expr_this_capture (tree lambda) tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda); + /* In unevaluated context this isn't an odr-use, so just return the + nearest 'this'. */ + if (cp_unevaluated_operand) + return lookup_name (this_identifier); + /* Try to default capture 'this' if we can. */ if (!this_capture && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE) @@ -9523,11 +9528,6 @@ lambda_expr_this_capture (tree lambda) if (!this_capture) { - /* In unevaluated context this isn't an odr-use, so just return the - nearest 'this'. */ - if (cp_unevaluated_operand) - return lookup_name (this_identifier); - error ("%<this%> was not captured for this lambda function"); result = error_mark_node; } diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this14.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this14.C new file mode 100644 index 0000000..9834bfd --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this14.C @@ -0,0 +1,49 @@ +// PR c++/52014 +// { dg-require-effective-target c++11 } + +template <class Iterator, class Func> +void for_each(const Iterator first, const Iterator last, Func func) +{ + for (Iterator it = first; it != last; ++it) { + func(*it); + } +} + +template <class T> +struct helper +{ + typedef typename T::size_type type; +}; + +template <class T> +struct helper<T&> +{ + typedef typename T::size_type type; +}; + +template <class T> +struct helper<T*> +{ + typedef typename T::size_type type; +}; + +struct bar +{ + struct foo + { + typedef int size_type; + } foo_; + + void test() + { + int arr[] = { 1, 2, 3 }; + for_each(arr, arr + 3, [&](helper<foo>::type i) { + for_each(arr, arr + 3, [&](helper<decltype(foo_)>::type j) { }); + }); + } +}; + +int main() +{ + return 0; +} |