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

int 
foo(int a)
{
  int z = a | 1;
  return z != 0;
}

/* VRP should optimize this to a trivial "return 1".   */
/* { dg-final { scan-tree-dump-times "return 1" 1 "vrp1" } } * /
/* { dg-final { cleanup-tree-dump "vrp1" } } */