mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +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;
|
||
|
}
|