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