1 ; RUN: llvm-as < %s | llc -march=x86 > %t
2 ; RUN: grep btl %t | count 2
3 ; RUN: grep cmov %t | count 2
4 ; RUN: not grep test %t
7 ; RUN: not grep cmovne %t
8 ; RUN: not grep cmove %t
10 define i32 @foo(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
12 %0 = lshr i32 %x, %n ; <i32> [#uses=1]
13 %1 = and i32 %0, 1 ; <i32> [#uses=1]
14 %toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
15 %.0 = select i1 %toBool, i32 %v, i32 12 ; <i32> [#uses=1]
18 define i32 @bar(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
20 %0 = lshr i32 %x, %n ; <i32> [#uses=1]
21 %1 = and i32 %0, 1 ; <i32> [#uses=1]
22 %toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
23 %.0 = select i1 %toBool, i32 12, i32 %v ; <i32> [#uses=1]