URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr33333.C] - Rev 707
Go to most recent revision | Compare with Previous | Blame | View Log
// PR middle-end/33333
// { dg-do compile }
struct A
{
int n;
void foo ();
};
void
A::foo ()
{
try
{
#pragma omp parallel for
for (int i = 0; i < n; ++i)
;
} catch (...) {}
}
Go to most recent revision | Compare with Previous | Blame | View Log