1/* { dg-do compile } */
2/* { dg-options "-O -fnon-call-exceptions" } */
3int f (float g)
4{
5  try { return g >= 0; }
6  catch (...) {}
7}
8