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

7 lines
152 B
LLVM

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