aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp/2006-12-01-TruncBoolBug.ll
blob: 889ef56bf9c6e6dbccc747231c190990bdb05cb0 (plain)
1
2
3
4
5
6
7
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
; RUN:   grep {ret i1 false}
define i1 @test() {
        %X = trunc i32 320 to i1                ; <i1> [#uses=1]
        ret i1 %X
}