mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-05 04:06:45 +00:00
17 lines
221 B
C
17 lines
221 B
C
// { dg-do run }
|
|
// { dg-require-effective-target lto }
|
|
// { dg-options "-flto -g -fopenmp" }
|
|
|
|
int e = 5;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int a[e];
|
|
a[0] = 6;
|
|
#pragma omp parallel
|
|
if (a[0] != 6)
|
|
__builtin_abort ();
|
|
return 0;
|
|
}
|