2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / arm-fp16-int-convert-ieee.c
blob1314d4b0e6dbd7d4a329b68211b8f4ddd4f41880
1 /* Test floating-point conversions. Standard types and __fp16. */
2 /* { dg-do run { target arm*-*-* } } */
3 /* { dg-options "-mfp16-format=ieee" } */
5 #include "fp-int-convert.h"
6 #define FP16_MANT_DIG 11
8 int
9 main (void)
11 TEST_I_F(signed char, unsigned char, float, FP16_MANT_DIG);
12 TEST_I_F(signed short, unsigned short, float, FP16_MANT_DIG);
13 TEST_I_F(signed int, unsigned int, float, FP16_MANT_DIG);
14 TEST_I_F(signed long, unsigned long, float, FP16_MANT_DIG);
15 TEST_I_F(signed long long, unsigned long long, float, FP16_MANT_DIG);
16 exit (0);