mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
20 lines
172 B
C
20 lines
172 B
C
/* { dg-do run } */
|
|
|
|
void abort (void);
|
|
|
|
int main()
|
|
{
|
|
int x;
|
|
int *p;
|
|
|
|
p = &x;
|
|
|
|
#pragma omp parallel
|
|
{
|
|
if (p != &x)
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
}
|