1 /* { dg-do run { target m68k-*-* sparc-*-* } } */
2 /* { dg-options { -m68000 -O2 } { target m68k-*-* } } */
3 /* { dg-options { -O2 } { target sparc-*-* } } */
5 extern void abort (void);
7 typedef float SFtype
__attribute__ ((mode (SF
)));
8 typedef float DFtype
__attribute__ ((mode (DF
)));
10 typedef int HItype
__attribute__ ((mode (HI
)));
11 typedef int SItype
__attribute__ ((mode (SI
)));
12 typedef int DItype
__attribute__ ((mode (DI
)));
14 typedef unsigned int UHItype
__attribute__ ((mode (HI
)));
15 typedef unsigned int USItype
__attribute__ ((mode (SI
)));
16 typedef unsigned int UDItype
__attribute__ ((mode (DI
)));
18 typedef UDItype fractype
;
19 typedef USItype halffractype
;
20 typedef DFtype FLO_type
;
21 typedef DItype intfrac
;
30 fractype fraction
:52 __attribute__ ((packed
));
31 unsigned int exp
:11 __attribute__ ((packed
));
32 unsigned int sign
:1 __attribute__ ((packed
));
37 void foo (long long a
);
43 FLO_union_type dst
= { 0x0123456789abcdefLL
};
45 x
= dst
.bits
.fraction
;
58 if (a
!= 0x0123456789abcLL
)