2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -march=x86 | FileCheck %s
|
2009-01-07 01:00:24 +00:00
|
|
|
|
2009-08-25 20:49:04 +00:00
|
|
|
define i32 @test1(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
|
2009-01-29 01:59:02 +00:00
|
|
|
entry:
|
2009-08-25 20:49:04 +00:00
|
|
|
; CHECK: test1:
|
|
|
|
; CHECK: btl
|
|
|
|
; CHECK-NEXT: movl $12, %eax
|
|
|
|
; CHECK-NEXT: cmovae 16(%esp), %eax
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
|
2009-01-29 01:59:02 +00:00
|
|
|
%0 = lshr i32 %x, %n ; <i32> [#uses=1]
|
|
|
|
%1 = and i32 %0, 1 ; <i32> [#uses=1]
|
|
|
|
%toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
|
|
|
|
%.0 = select i1 %toBool, i32 %v, i32 12 ; <i32> [#uses=1]
|
|
|
|
ret i32 %.0
|
|
|
|
}
|
2009-08-25 20:49:04 +00:00
|
|
|
define i32 @test2(i32 %x, i32 %n, i32 %w, i32 %v) nounwind readnone {
|
2009-01-07 01:00:24 +00:00
|
|
|
entry:
|
2009-08-25 20:49:04 +00:00
|
|
|
; CHECK: test2:
|
|
|
|
; CHECK: btl
|
|
|
|
; CHECK-NEXT: movl $12, %eax
|
|
|
|
; CHECK-NEXT: cmovb 16(%esp), %eax
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
|
2009-01-07 01:00:24 +00:00
|
|
|
%0 = lshr i32 %x, %n ; <i32> [#uses=1]
|
|
|
|
%1 = and i32 %0, 1 ; <i32> [#uses=1]
|
|
|
|
%toBool = icmp eq i32 %1, 0 ; <i1> [#uses=1]
|
|
|
|
%.0 = select i1 %toBool, i32 12, i32 %v ; <i32> [#uses=1]
|
|
|
|
ret i32 %.0
|
|
|
|
}
|