URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr27310.C] - Rev 844
Go to most recent revision | Compare with Previous | Blame | View Log
// PR middle-end/27310
// { dg-do compile }
// { dg-options "-O2 -fopenmp" }
struct A
{
~A ();
};
struct B
{
A a, b;
};
void
foo ()
{
A c, d;
#pragma omp parallel
B e;
}
Go to most recent revision | Compare with Previous | Blame | View Log