diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/gomp/pr29965-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/gomp/pr29965-1.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/gomp/pr29965-1.c b/gcc/testsuite/gcc.dg/gomp/pr29965-1.c new file mode 100644 index 000000000..b587d81e7 --- /dev/null +++ b/gcc/testsuite/gcc.dg/gomp/pr29965-1.c @@ -0,0 +1,45 @@ +/* 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 (void) __attribute__ ((noreturn)); + +static inline void +foo (void) +{ +#pragma omp parallel + for (;;) + ; +} + +static inline void +bar (void) +{ +#pragma omp parallel + baz (); +} + +void +foo1 (void) +{ + foo (); +} + +void +foo2 (void) +{ + foo (); +} + +void +bar1 (void) +{ + bar (); +} + +void +bar2 (void) +{ + bar (); +} |