Skip to content

Commit 07479dd

Browse files
committed
[InstCombine] Add test for simplify select if it combinated and/or/xor
`and/or/xor` operations can each be changed to sum of logical operations including operators other than themselves. `x&y -> (x|y) ^ (x^y)` `x|y -> (x&y) | (x^y)` `x^y -> (x|y) ^ (x&y)` This commit contains to test these cases. Proof: https://alive2.llvm.org/ce/z/WW8iRR
1 parent 8a84596 commit 07479dd

File tree

1 file changed

+847
-0
lines changed

1 file changed

+847
-0
lines changed

0 commit comments

Comments
 (0)