Fixed some bugs.
[llvm/zpu.git] / test / CodeGen / X86 / clz.ll
blob623ac75b529919f01f677300549263f3d551ae63
1 ; RUN: llc < %s -march=x86 -mcpu=yonah | FileCheck %s
3 define i32 @t1(i32 %x) nounwind  {
4         %tmp = tail call i32 @llvm.ctlz.i32( i32 %x )
5         ret i32 %tmp
6 ; CHECK: t1:
7 ; CHECK: bsrl
8 ; CHECK: cmov
11 declare i32 @llvm.ctlz.i32(i32) nounwind readnone 
13 define i32 @t2(i32 %x) nounwind  {
14         %tmp = tail call i32 @llvm.cttz.i32( i32 %x )
15         ret i32 %tmp
16 ; CHECK: t2:
17 ; CHECK: bsfl
18 ; CHECK: cmov
21 declare i32 @llvm.cttz.i32(i32) nounwind readnone 
23 define i16 @t3(i16 %x, i16 %y) nounwind  {
24 entry:
25         %tmp1 = add i16 %x, %y
26         %tmp2 = tail call i16 @llvm.ctlz.i16( i16 %tmp1 )               ; <i16> [#uses=1]
27         ret i16 %tmp2
28 ; CHECK: t3:
29 ; CHECK: bsrw
30 ; CHECK: cmov
33 declare i16 @llvm.ctlz.i16(i16) nounwind readnone