blob: 623ac75b529919f01f677300549263f3d551ae63 [file] [log] [blame]
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07001; RUN: llc < %s -march=x86 -mcpu=yonah | FileCheck %s
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002
3define i32 @t1(i32 %x) nounwind {
4 %tmp = tail call i32 @llvm.ctlz.i32( i32 %x )
5 ret i32 %tmp
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07006; CHECK: t1:
7; CHECK: bsrl
8; CHECK: cmov
Shih-wei Liaoe264f622010-02-10 11:10:31 -08009}
10
11declare i32 @llvm.ctlz.i32(i32) nounwind readnone
12
13define i32 @t2(i32 %x) nounwind {
14 %tmp = tail call i32 @llvm.cttz.i32( i32 %x )
15 ret i32 %tmp
Shih-wei Liao7abe37e2010-04-28 01:47:00 -070016; CHECK: t2:
17; CHECK: bsfl
18; CHECK: cmov
Shih-wei Liaoe264f622010-02-10 11:10:31 -080019}
20
21declare i32 @llvm.cttz.i32(i32) nounwind readnone
22
23define i16 @t3(i16 %x, i16 %y) nounwind {
24entry:
25 %tmp1 = add i16 %x, %y
26 %tmp2 = tail call i16 @llvm.ctlz.i16( i16 %tmp1 ) ; <i16> [#uses=1]
27 ret i16 %tmp2
Shih-wei Liao7abe37e2010-04-28 01:47:00 -070028; CHECK: t3:
29; CHECK: bsrw
30; CHECK: cmov
Shih-wei Liaoe264f622010-02-10 11:10:31 -080031}
32
33declare i16 @llvm.ctlz.i16(i16) nounwind readnone