1 ; RUN: llc < %s -march=x86 | FileCheck %s
3 define i32 @test1(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
7 ; CHECK-NEXT: movl $12, %eax
8 ; CHECK-NEXT: cmovae 16(%esp), %eax
11 %0 = lshr i32 %x, %n ; <i32> [#uses=1]
12 %1 = and i32 %0, 1 ; <i32> [#uses=1]
13 %toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
14 %.0 = select i1 %toBool, i32 %v, i32 12 ; <i32> [#uses=1]
17 define i32 @test2(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
21 ; CHECK-NEXT: movl $12, %eax
22 ; CHECK-NEXT: cmovb 16(%esp), %eax
25 %0 = lshr i32 %x, %n ; <i32> [#uses=1]
26 %1 = and i32 %0, 1 ; <i32> [#uses=1]
27 %toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
28 %.0 = select i1 %toBool, i32 12, i32 %v ; <i32> [#uses=1]