mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
add tests for De Morgan instcombines based on PR22723
llvm-svn: 247040
This commit is contained in:
parent
4714c9c846
commit
044ebbbd9b
38
test/Transforms/InstCombine/demorgan-zext.ll
Normal file
38
test/Transforms/InstCombine/demorgan-zext.ll
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
||||||
|
|
||||||
|
; PR22723: Recognize De Morgan's Laws when obfuscated by zexts.
|
||||||
|
|
||||||
|
define i32 @demorgan_or(i1 %X, i1 %Y) {
|
||||||
|
%zextX = zext i1 %X to i32
|
||||||
|
%zextY = zext i1 %Y to i32
|
||||||
|
%notX = xor i32 %zextX, 1
|
||||||
|
%notY = xor i32 %zextY, 1
|
||||||
|
%or = or i32 %notX, %notY
|
||||||
|
ret i32 %or
|
||||||
|
|
||||||
|
; CHECK-LABEL: demorgan_or(
|
||||||
|
; CHECK-NEXT: = zext
|
||||||
|
; CHECK-NEXT: = zext
|
||||||
|
; CHECK-NEXT: = xor
|
||||||
|
; CHECK-NEXT: = xor
|
||||||
|
; CHECK-NEXT: = or
|
||||||
|
; CHECK-NEXT: ret
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32 @demorgan_and(i1 %X, i1 %Y) {
|
||||||
|
%zextX = zext i1 %X to i32
|
||||||
|
%zextY = zext i1 %Y to i32
|
||||||
|
%notX = xor i32 %zextX, 1
|
||||||
|
%notY = xor i32 %zextY, 1
|
||||||
|
%and = and i32 %notX, %notY
|
||||||
|
ret i32 %and
|
||||||
|
|
||||||
|
; CHECK-LABEL: demorgan_and(
|
||||||
|
; CHECK-NEXT: = zext
|
||||||
|
; CHECK-NEXT: = zext
|
||||||
|
; CHECK-NEXT: = xor
|
||||||
|
; CHECK-NEXT: = xor
|
||||||
|
; CHECK-NEXT: = and
|
||||||
|
; CHECK-NEXT: ret
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user