URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr29965-1.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR middle-end/29965// Test that OpenMP construct bodies which never return don't cause ICEs.// { dg-do compile }// { dg-options "-O2 -fopenmp" }extern void baz () __attribute__ ((noreturn));static inline voidfoo (){#pragma omp parallelfor (;;);}static inline voidbar (){#pragma omp parallelbaz ();}voidfoo1 (){foo ();}voidfoo2 (){foo ();}voidbar1 (){bar ();}voidbar2 (){bar ();}
Go to most recent revision | Compare with Previous | Blame | View Log
