aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll
blob: 0a0038f217ae8f6ef72e1557be6b0989a89fdcfe (plain)
1
2
3
4
5
6
7
; 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
}