You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
421 B
50 lines
421 B
4 years ago
|
|
||
|
void f()
|
||
|
{
|
||
|
if (0)
|
||
|
#pragma omp atomic
|
||
|
{
|
||
|
i++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
if (0)
|
||
|
#if foo
|
||
|
{
|
||
|
i++;
|
||
|
}
|
||
|
#else
|
||
|
{
|
||
|
i += 2;
|
||
|
}
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
while (108)
|
||
|
{
|
||
|
if (42)
|
||
|
#pragma omp critical
|
||
|
{ }
|
||
|
if (23)
|
||
|
#pragma omp critical
|
||
|
{
|
||
|
++i;
|
||
|
}
|
||
|
while (16)
|
||
|
{
|
||
|
}
|
||
|
int i = 15;
|
||
|
if (8)
|
||
|
#pragma omp atomic
|
||
|
{
|
||
|
i += 4;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|