summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-eqandshift-3.c
blob: d3b4adcf76c69710d7d70044c72e9c67f1299f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR middle-end/29726 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-original" } */

void foo (void);

int test1 (int a)
{
  if ((a >> 3) & 134217728)
    foo ();
}

int test2 (unsigned int b)
{
  if ((b >> 3) & 134217728)
    foo ();
}

/* { dg-final { scan-tree-dump-times "\\(a \& 1073741824\\) != 0" 1 "original" } } */
/* { dg-final { scan-tree-dump-times "\\(b \& 1073741824\\) != 0" 1 "original" } } */
/* { dg-final { cleanup-tree-dump "original" } } */