aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/vrp28.c
blob: 8c2a72b04ccb75aa2cb2e3d98e3060bd5a1e728f (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
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */

int f(_Bool a)
{
  int t = a;
  if (t != 2)
   return 0;
  return 1;
}

int f1(unsigned char a)
{
  int t = a;
  if (t != 256)
   return 0;
  return 1;
}

int f3 (unsigned char c)
{
  int i = c;
  if (i < 0 || i > 255)
    return -1;
  else
    return 0;
}

/* { dg-final { scan-tree-dump-times "if " 0 "vrp1" } } */