blob: 6f5d9e445616fa245ff5e9f8e60ea54432454caa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
int foo (int xx, int xy)
{
xx &=1;
xy &=1;
return xx ^ xy;
}
/* { dg-final { scan-tree-dump-times " & 1" 1 "optimized" } } */
|