public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/57408] New: lambda, Variable length arrays, thread, internal compiler error: in expand_expr_real_1, at expr.c:9327
@ 2013-05-25  2:53 superbem at gmail dot com
  2013-05-25  8:45 ` [Bug c++/57408] " paolo.carlini at oracle dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: superbem at gmail dot com @ 2013-05-25  2:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57408

            Bug ID: 57408
           Summary: lambda, Variable length arrays, thread, internal
                    compiler error: in expand_expr_real_1, at expr.c:9327
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: superbem at gmail dot com

#include <thread>
#include <cstdio>
using namespace std;

int main(){
    int y=2;
    float fa[2][y]; // thread compile fine if y were 2 hardcoded instead
    fa[0][0]=0.8;
    fa[0][1]=1.8;
    auto fx=[&](){
        for(int c=0;c<2;c++){ // thread compile fine if c<2 were c<1 instead
            printf("\n%f",fa[0][c]); // (1*) "internal compiler error: in
expand_expr_real_1, at expr.c:9327"
        }
    };
    fx(); // works fine everytime
    thread(fx).join(); //error (1*)
}


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-06-21 12:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-25  2:53 [Bug c++/57408] New: lambda, Variable length arrays, thread, internal compiler error: in expand_expr_real_1, at expr.c:9327 superbem at gmail dot com
2013-05-25  8:45 ` [Bug c++/57408] " paolo.carlini at oracle dot com
2013-05-25 12:40 ` daniel.kruegler at googlemail dot com
2013-06-20  1:39 ` superbem at gmail dot com
2013-06-20  9:55 ` paolo.carlini at oracle dot com
2013-06-21  9:01 ` paolo.carlini at oracle dot com
2013-06-21 12:40 ` jason at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).