* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr37341.c
blobadbf0c7e4840615f969f5b2d948559d2a861f159
1 /* PR rtl-optimization/37341 */
3 short int a;
4 int b;
6 static inline int
7 f1 (int x, int y)
9 if (x < 0 || y < 0 || y >= sizeof (int) * 8 || x > (1 >> y))
10 return x;
13 static inline unsigned int
14 f2 (int x, int y)
16 if (y <= 0 && x && y < __INT_MAX__ / x)
17 return x;
18 return x * y;
21 int
22 f3 (void)
24 return (signed char) 0xb6;
27 unsigned int
28 f4 (unsigned int x)
30 while (1)
32 if ((f2 (f3 (), (f1 (a, b)))) < x)
33 return 1;