Apply patch from Daniel Schürmann: https://sourceforge.net/p/boomerang/bugs/78/
[boomerang.git] / boomerang / transformations / logic_canolize.t
blob20789ce03a3993e2ad04de2e03ec2d1479f6afd2
1 (x & x) becomes x
2 (x ^ x) becomes 0
3 !(a == b) becomes a != b
4 !(a != b) becomes a == b
5 x == x becomes true