aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/2006-11-27-SelectLegalize.ll
blob: 1222a37436862cce1093c6419a7abc3796fd6ee4 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc -march=x86 | grep test.*1
; PR1016

define i32 @test(i32 %A, i32 %B, i32 %C) {
        %a = trunc i32 %A to i1         ; <i1> [#uses=1]
        %D = select i1 %a, i32 %B, i32 %C               ; <i32> [#uses=1]
        ret i32 %D
}