summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr77975.c
blob: 148cebdded964da7fce148abdf2a430c55650513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* PR tree-optimization/77975 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-ivcanon-details" } */

/* { dg-final { scan-tree-dump-times "Proved that loop 1 iterates 1 times using brute force" 1 "ivcanon" } } */

unsigned int
foo (unsigned int *b)
{
  unsigned int a = 3;
  while (a)
    {
      a >>= 1;
      *b += a;
    }
  return a; 
}

/* { dg-final { scan-tree-dump-times "Proved that loop 1 iterates 2 times using brute force" 1 "ivcanon" } } */

unsigned int
bar (unsigned int *b)
{
  unsigned int a = 7;
  while (a)
    {
      a >>= 1;
      *b += a;
    }
  return a; 
}