aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/forwprop-24.c
blob: 74207cf1a812ea09cb4ffd53dbfe8e1146079f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-cddce1" } */

void bar (void);
unsigned short
foo (unsigned char x, unsigned short y)
{
  unsigned char t = (unsigned char)((x & 1) ^ ((unsigned char)y & 1));
  if (t == 1)
    bar ();
  return y;
}

/* We should have combined this to require only one bitwise and
   as in (x ^ (char) y) & 1.  */

/* { dg-final { scan-tree-dump-times " & " 1 "cddce1" } } */
/* { dg-final { cleanup-tree-dump "cddce1" } } */