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

7 lines
138 B
LLVM

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