1 /* 20050922-1.c does not trigger the expand_shift rotate bug on sh4-elf, but
5 /* { dg-options "-O1 -std=c99" } */
7 extern void abort (void);
8 extern void exit (int);
10 #if __INT_MAX__ == 2147483647
11 typedef unsigned int uint32_t;
12 #elif __LONG_MAX__ == 2147483647
13 typedef unsigned long uint32_t;
15 #error unable to find 32-bit integer type
18 #define rotl(x,n) (((x) << ((int)(n))) | ((x) >> (32 - (int)(n))))
21 f (uint32_t a
, uint32_t b
)