1 /* { dg-do compile } */
2 /* { dg-options "-march=z196 -O2 -fexceptions -fnon-call-exceptions" } */
3 
4 extern float f (void);
5 extern float g (void);
6 
h(float x,float y)7 float h (float x, float y)
8 {
9   return x < y ? f () : g ();
10 }
11