For PR1336:
[oota-llvm.git] / test / CodeGen / Alpha / ctlz_e.ll
1 ; Make sure this testcase does not use ctpop
2 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | not grep -i ctpop 
3 ; XFAIL: *
4
5 declare ulong %llvm.ctlz(ulong)
6
7 implementation   ; Functions:
8
9 ulong %bar(ulong %x) {
10 entry:
11         %tmp.1 = call ulong %llvm.ctlz( ulong %x ) 
12         ret ulong %tmp.1
13 }