blob: f860456d647c1122d7f2e917a7725aca11a8df8f [file] [log] [blame]
Nate Begemane066d682005-05-11 23:45:54 +00001; Make sure this testcase does not use ctpop
2; RUN: llvm-as < %s | llc -march=ppc32 | grep -i 'cntlzw'
3
4declare int %llvm.cttz(int)
5
6implementation ; Functions:
7
8int %bar(int %x) {
9entry:
10 %tmp.1 = call int %llvm.cttz( int %x )
11 ret int %tmp.1
12}