hanchenye-llvm-project/llvm/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll

8 lines
164 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
; RUN: grep {ret i1 false}
bool %test(bool %V) {
%Y = setlt bool %V, false
ret bool %Y
}