1 /* PR rtl-optimization/57829 */
3 __attribute__((noinline
, noclone
))
7 return 2 | ((k
- 1) >> ((int) sizeof (int) * __CHAR_BIT__
- 1));
10 __attribute__((noinline
, noclone
))
14 return 2L | ((k
- 1L) >> ((int) sizeof (long int) * __CHAR_BIT__
- 1));
17 __attribute__((noinline
, noclone
))
22 return 4 | ((k
+ 2) >> 5);
28 if (f1 (1) != 2 || f2 (1L) != 2L || f3 (63) != 6 || f3 (1) != 4)