view gcc/testsuite/gcc.dg/tree-ssa/forwprop-24.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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" } } */