c7b2c6fa6d2a71a0d365ad643fe50ec5cf99e950
[oota-llvm.git] / test / Transforms / ConstProp / 2006-12-01-TruncBoolBug.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'ret bool false'
2 bool %test() {
3   %X = trunc uint 320 to bool
4   ret bool %X
5 }