1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* PR middle-end/60469 */ /* { dg-do compile } */ /* { dg-options "-fcilkplus" } */ void foo() {} #define ALEN 1024 int main(int argc, char* argv[]) { int b[ALEN]; b[:] = 100; _Cilk_spawn foo(); return 0; }