This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/54798] internal compiler error: Segmentation fault
- From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 03 Oct 2012 21:20:01 +0000
- Subject: [Bug c++/54798] internal compiler error: Segmentation fault
- Auto-submitted: auto-generated
- References: <bug-54798-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54798
Daniel KrÃgler <daniel.kruegler at googlemail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |daniel.kruegler at
| |googlemail dot com
--- Comment #3 from Daniel KrÃgler <daniel.kruegler at googlemail dot com> 2012-10-03 21:20:01 UTC ---
This happens also with gcc 4.8 HEAD. Further simplifications and removal of
library dependencies:
//-------
void use(int){}
template <typename U>
class C
{
public:
void f()
{
[&]()
{
use(_member);
}();
}
private:
int _member;
};
//-------
After this reduction it looks like a dup of bug 53921 to me.