aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/cmpbit-6.c
blob: 4ec73f030bbc62e970303319b909d7da758083e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* PR tree-optimization/106164 */
/* PR tree-optimization/111456 */

_Bool iu(int a)
{
  _Bool t = a == 0;
  unsigned t1 = a;
  _Bool t2 = t1 >= 3;
  return t & t2;
}

_Bool is(int a)
{
  _Bool t = a == 0;
  short t1 = a;
  _Bool t2 = t1 >= 3;
  return t & t2;
}

/* { dg-final { scan-tree-dump-times "return 0" 2 "optimized" } } */