[Bug 1087895] Re: internal compiler error: in cxx_eval_indirect_ref, at cp/semantics.c:7435

2012-12-31 Thread SplinterOfChaos
I submitted this bug to Ubuntu instead of GCC's bugzilla because supposedly that's the propper way to do it in Ubuntu, but I don't see any signs that having done so will help get this bug fixed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1087895] Re: internal compiler error: in cxx_eval_indirect_ref, at cp/semantics.c:7435

2012-12-09 Thread SplinterOfChaos
Reverted change. I thought saying affects gcc-snapshot would tell Launchpad it also affects that, not that it affects that instead. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1087895 Title:

[Bug 1087895] [NEW] internal compiler error: in cxx_eval_indirect_ref, at cp/semantics.c:7435

2012-12-07 Thread SplinterOfChaos
Public bug reported: This error occurs when I try to compile this seven-line file. #include tuple template class X struct Hold { X x; constexpr Hold( X x ) : x(std::move(x)) { } }; constexpr auto a = Holdint( 1 ); //ok constexpr auto b = Holdstd::tupleint( std::tupleint(1) );