view gcc/testsuite/g++.dg/gomp/pr29965-7.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

// 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 ();
}