URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr29965-7.C] - Rev 693
Compare with Previous | Blame | View Log
// PR middle-end/29965
// Test that OpenMP construct bodies which never return don't cause ICEs.
// This is invalid code, but we don't emit diagnostics for it, nevertheless
// we test that we don't ICE on it.
// { dg-do compile }
// { dg-options "-O2 -fopenmp" }
void
foo ()
{
#pragma omp parallel
throw 0;
}
static inline void
bar ()
{
#pragma omp parallel
throw 0;
}
void
bar1 ()
{
bar ();
}
void
bar2 ()
{
bar ();
}