blob: 52b0bf39d9e055e04c0a32bb76f5afc3d487882e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-march=z196 -O2 -fexceptions -fnon-call-exceptions" } */
extern float f (void);
extern float g (void);
float h (float x, float y)
{
return x < y ? f () : g ();
}