mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
21 lines
196 B
C
21 lines
196 B
C
/* { dg-do run } */
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int i;
|
|
void
|
|
foo (void)
|
|
{
|
|
#pragma omp master
|
|
i += 8;
|
|
}
|
|
i = 4;
|
|
foo ();
|
|
if (i != 12)
|
|
abort ();
|
|
return 0;
|
|
}
|