1 /* { dg-do compile } */
2 /* { dg-options "-mfp16-format=ieee" } */
4 /* Test that the ACLE macro is defined. */
5 #if __ARM_FP16_ARGS != 1
6 #error Unexpected value for __ARM_FP16_ARGS
9 /* Test that __fp16 is supported as a parameter type. */
10 extern void f (__fp16
);
11 extern void (*pf
) (__fp16
);
13 extern void g (__fp16
*);
14 extern void (*pg
) (__fp16
*);