blob: 78bb1a3ccb9952dd2424e9533ed514173c3052f2 [file] [log] [blame]
/* PR middle-end/102415 */
extern
#ifdef __cplusplus
"C"
#endif
void abort ();
void
foo (void)
{
#pragma omp scope nowait
abort ();
}
void
bar (void)
{
#pragma omp scope
abort ();
}