PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / nand.c
blobebb6c39e3f1b525160c468ca4e03abad877b54c2
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-original" } */
4 unsigned f(unsigned x, unsigned y){
5 return (x | y) & ~x;
7 unsigned g(unsigned x, unsigned y){
8 return ~x & (y | x);
11 /* { dg-final { scan-tree-dump-times "return ~x & y;" 2 "original" } } */