aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr31521.c
blob: 4f54cc0771662a5139b365603f4c4b3da6a60669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */

void fail(void) __attribute__((noreturn));
int bar(int);

int foo(int x) {
  int i;
  int s = 0;

  if (x <= 0) fail();
  for (i = 0; i < x; ++i) {
    /* This division by 4 should be replaced with >> 2.  */
    s += bar(i/4);
  }
  return s;
}

/* { dg-final { scan-tree-dump-times " = i_.* >> 2" 1 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */