Files
clang-p2996/llvm/test/Transforms/InstCombine/2008-05-31-Bools.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

25 lines
385 B
LLVM

; RUN: opt < %s -passes=instcombine -S > %t
; RUN: grep "xor" %t
; RUN: grep "and" %t
; RUN: not grep "div" %t
define i1 @foo1(i1 %a, i1 %b) {
%A = sub i1 %a, %b
ret i1 %A
}
define i1 @foo2(i1 %a, i1 %b) {
%A = mul i1 %a, %b
ret i1 %A
}
define i1 @foo3(i1 %a, i1 %b) {
%A = udiv i1 %a, %b
ret i1 %A
}
define i1 @foo4(i1 %a, i1 %b) {
%A = sdiv i1 %a, %b
ret i1 %A
}