summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll
blob: e87e42c1981dcb74c56a2acf6ad311f9b717b2c3 (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
}