[InstCombine][NFC] Update comment in and-xor-or.ll

This commit is contained in:
Alexander Shaposhnikov 2022-05-05 00:07:49 +00:00
parent 46bef4d713
commit 640f1e0829
1 changed files with 1 additions and 1 deletions
llvm/test/Transforms/InstCombine

View File

@ -168,7 +168,7 @@ define i64 @or2(i64 %x, i64 %y) {
ret i64 %3
}
; ((x & y) + z) | y -> (z | y)
; ((x & y) ^ z) | y -> (z | y)
define i64 @and_xor_or1(i64 %px, i64 %py, i64 %pz) {
; CHECK-LABEL: @and_xor_or1(