Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 | grep test.*1
      2 ; PR1016
      3 
      4 define i32 @test(i32 %A, i32 %B, i32 %C) {
      5         %a = trunc i32 %A to i1         ; <i1> [#uses=1]
      6         %D = select i1 %a, i32 %B, i32 %C               ; <i32> [#uses=1]
      7         ret i32 %D
      8 }
      9 
     10