aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-ccp-34.c
blob: ce8f98535bfb3015c99950462cfad4d604b34dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ccp1" } */

int foo (int x)
{
  int y = 0;
  int z = x + 1;
  return z + y;
}

/* { dg-final { scan-tree-dump-times "\\+" 1 "ccp1" } } */