PR tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr78378.c
blob05c1f9c771c1f5ab55bece43c27098eafc473348
1 /* PR rtl-optimization/78378 */
3 unsigned long long __attribute__ ((noinline, noclone))
4 foo (unsigned long long x)
6 x <<= 41;
7 x /= 232;
8 return 1 + (unsigned short) x;
11 int
12 main ()
14 unsigned long long x = foo (1);
15 if (x != 0x2c24)
16 __builtin_abort();
17 return 0;