PR tree-optimization/81913
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-niter-2.c
blob2377e6caa7286442eddc21cc836e13d42603dd9e
1 /* { dg-do run } */
2 /* { dg-options "-O2 -fdump-tree-sccp-details" } */
4 typedef unsigned char u8;
5 typedef unsigned int u32;
7 static u32
8 b (u8 d, u32 e, u32 g)
12 e += g + 1;
13 d--;
15 while (d >= (u8) e);
17 return e;
20 int
21 main (void)
23 u32 x = b (1, -0x378704, ~0xba64fc);
24 if (x != 0xd93190d0)
25 __builtin_abort ();
26 return 0;
29 /* Niter analyzer should be able to compute niters for the loop even though
30 IV:d wraps. */
31 /* { dg-final { scan-tree-dump "Replacing uses of: .* with: 3643904208" "sccp" { xfail *-*-* } } } */