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