OLD | NEW |
1 /* { dg-options "-std=gnu99" } */ | |
2 /* { dg-skip-if "test is for emulation" { hard_dfp } { "*" } { "" } } */ | 1 /* { dg-skip-if "test is for emulation" { hard_dfp } { "*" } { "" } } */ |
3 | 2 |
4 /* Check that appropriate exceptions are raised for conversions involving | 3 /* Check that appropriate exceptions are raised for conversions involving |
5 decimal float values. */ | 4 decimal float values. */ |
6 | 5 |
7 #include "fe-check.h" | 6 #include "fe-check.h" |
8 | 7 |
9 volatile _Decimal32 d32; | 8 volatile _Decimal32 d32; |
10 volatile _Decimal64 d64; | 9 volatile _Decimal64 d64; |
11 volatile _Decimal128 d128; | 10 volatile _Decimal128 d128; |
(...skipping 18 matching lines...) Expand all Loading... |
30 convert_100 (); | 29 convert_100 (); |
31 convert_101 (); | 30 convert_101 (); |
32 convert_102 (); | 31 convert_102 (); |
33 convert_110 (); | 32 convert_110 (); |
34 convert_111 (); | 33 convert_111 (); |
35 convert_112 (); | 34 convert_112 (); |
36 convert_120 (); | 35 convert_120 (); |
37 convert_121 (); | 36 convert_121 (); |
38 convert_122 (); | 37 convert_122 (); |
39 | 38 |
40 if (failcnt != 0) | 39 FINISH |
41 abort (); | |
42 return 0; | |
43 } | 40 } |
OLD | NEW |