1 /* Test promotion of __fp16 to double as arguments to variadic function. */
4 /* { dg-options "-mfp16-format=ieee" } */
9 extern int f (int n
, ...);
19 xx
= va_arg (ap
, double);
20 yy
= va_arg (ap
, double);
22 if (xx
== 42.0 && yy
== -42.0)
28 static __fp16 x
= 42.0;
29 static __fp16 y
= -42.0;