PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-andxor-1.c
blobdcef3f8377ba2dac5d3406c5ddcad3dd610797a5
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-original" } */
4 int test1(int a, int b)
6 return (a ^ b) & a;
9 int test2(int c, int d)
11 return (c ^ d) & d;
14 int test3(int e, int f)
16 return e & (e ^ f);
19 int test4(int g, int h)
21 return g & (h ^ g);
24 /* { dg-final { scan-tree-dump-times "~b \& a" 1 "original" } } */
25 /* { dg-final { scan-tree-dump-times "~c \& d" 1 "original" } } */
26 /* { dg-final { scan-tree-dump-times "~f \& e" 1 "original" } } */
27 /* { dg-final { scan-tree-dump-times "~h \& g" 1 "original" } } */