URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr37189.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/37189
// { dg-do compile }
// { dg-options "-fopenmp" }
struct S
{
S () {}
S (S const &) {}
};
struct T
{
S s;
};
void
bar (T &)
{
}
int
foo ()
{
T t;
#pragma omp task
bar (t);
}
Go to most recent revision | Compare with Previous | Blame | View Log