2 pr65215-1.c from the execute part of the gcc torture tests.
13 /* PR tree-optimization/65215 */
15 static inline unsigned int
18 return (x
>> 24) | ((x
>> 8) & 0xff00) | ((x
<< 8) & 0xff0000) | (x
<< 24);
22 bar (unsigned long long *x
)
28 testTortureExecute (void)
30 if (CHAR_BIT
!= 8 || sizeof (unsigned int) != 4 || sizeof (unsigned long long) != 8)
33 unsigned long long l
= foo (0xdeadbeefU
) | 0xfeedbea800000000ULL
;
34 if (bar (&l
) != 0xdeadbeefU
)