Model stacksave and stackrestore as both writing memory, since we
[oota-llvm.git] / test / Transforms / InstCombine / 2004-08-10-BoolSetCC.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
2 ; RUN:    grep {ret i1 false}
3 bool %test(bool %V) {
4         %Y = setlt bool %V, false
5         ret bool %Y
6 }
7