URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr42234.C] - Rev 707
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/42234
// { dg-do compile }
// { dg-options "-fopenmp" }
extern int foo (void);
void
bar (int x)
{
#pragma omp critical
{
int j;
for (j = 0; j < foo (); j++)
;
if (0)
if (x >= 4)
;
}
}
Go to most recent revision | Compare with Previous | Blame | View Log