Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git] / test / CodeGen / Alpha / ctlz.ll
blobaa1588aa39e8f3c51fb778504f788d7c076ad533
1 ; Make sure this testcase codegens to the ctlz instruction
2 ; RUN: llc < %s -march=alpha -mcpu=ev67 | grep -i ctlz
3 ; RUN: llc < %s -march=alpha -mattr=+CIX | grep -i ctlz
4 ; RUN: llc < %s -march=alpha -mcpu=ev6 | not grep -i ctlz
5 ; RUN: llc < %s -march=alpha -mattr=-CIX | not grep -i ctlz
7 declare i8 @llvm.ctlz.i8(i8)
9 define i32 @bar(i8 %x) {
10 entry:
11         %tmp.1 = call i8 @llvm.ctlz.i8( i8 %x ) 
12         %tmp.2 = sext i8 %tmp.1 to i32
13         ret i32 %tmp.2