For PR1043:
[oota-llvm.git] / test / Transforms / InstCombine / 2004-08-10-BoolSetCC.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep 'ret i1 false'
2 bool %test(bool %V) {
3         %Y = setlt bool %V, false
4         ret bool %Y
5 }
6