From: Jason Merrill Date: Tue, 30 Aug 2011 21:27:18 +0000 (-0400) Subject: re PR c++/50114 (ICE with declaration inside for statement) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=971df06b2f4cd9335b34d087f82ec7a471b5871d;p=gcc.git re PR c++/50114 (ICE with declaration inside for statement) PR c++/50114 * decl.c (poplevel): Disable for scope compatibility hack in C++11 mode. From-SVN: r178338 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c2c00a7adf9..799fc2a5d47 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,9 @@ 2011-08-30 Jason Merrill + PR c++/50114 + * decl.c (poplevel): Disable for scope compatibility hack + in C++11 mode. + PR c++/50220 * semantics.c (add_capture): Call complete_type for copy. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index c375cf7a78d..9090b115403 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -643,6 +643,9 @@ poplevel (int keep, int reverse, int functionbody) for (link = decls; link; link = TREE_CHAIN (link)) { if (leaving_for_scope && TREE_CODE (link) == VAR_DECL + /* It's hard to make this ARM compatibility hack play nicely with + lambdas, and it really isn't necessary in C++11 mode. */ + && cxx_dialect < cxx0x && DECL_NAME (link)) { tree name = DECL_NAME (link); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a8fbdd6de86..9cc012f5fbf 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-08-30 Jason Merrill + + PR c++/50114 + * g++.dg/cpp0x/lambda/lambda-for.C: New. + 2011-08-30 Uros Bizjak * gcc.target/i386/fma-compile.c: Escape [ and ] in scan strings. diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-for.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-for.C new file mode 100644 index 00000000000..f161da85774 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-for.C @@ -0,0 +1,12 @@ +// PR c++/50114 +// { dg-options "-std=c++0x -w" } + +int open() +{ + int *x2feed_i = 0; + auto insert_feed = [&](unsigned char venue, int* newfeed) + { + for(int x2feed_i = 1; 0; ) ; + x2feed_i = newfeed; + }; +} diff --git a/gcc/testsuite/g++.dg/ext/forscope2.C b/gcc/testsuite/g++.dg/ext/forscope2.C index b883effb255..4c63bab7703 100644 --- a/gcc/testsuite/g++.dg/ext/forscope2.C +++ b/gcc/testsuite/g++.dg/ext/forscope2.C @@ -1,5 +1,5 @@ // { dg-do compile } -// { dg-options -fpermissive } +// { dg-options "-fpermissive -std=c++98" } // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 4 Sept 2001