llvm-6502/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll
2004-08-11 00:49:50 +00:00

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
}