PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / and-1.c
blob276c2b9bd8ab833161fbd4c0249aae7f9d4338c2
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized-raw" } */
4 int f(int in) {
5 in = in | 3;
6 in = in ^ 1;
7 in = (in & ~(unsigned long)1);
8 return in;
11 /* { dg-final { scan-tree-dump-not "bit_and_expr" "optimized" } } */