PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr79450.c
blob5ba710166f27717052e28aa436955edef95dd98e
1 /* PR rtl-optimization/79450 */
3 unsigned int
4 foo (unsigned char x, unsigned long long y)
6 do
8 x &= !y;
9 x %= 24;
11 while (x < y);
12 return x + y;
15 int
16 main (void)
18 unsigned int x = foo (1, 0);
19 if (x != 1)
20 __builtin_abort ();
21 return 0;