added a use of ctpop to debug stuff with
[oota-llvm.git] / test / CodeGen / Alpha / ctpop.ll
1 ; Make sure this testcase codegens to the bic instruction
2 ; RUN: llvm-as < %s | llc -march=alpha -enable-alpha-CT | grep 'ctpop'
3
4 declare long %llvm.ctpop(long)
5
6 implementation   ; Functions:
7
8 long %bar(long %x) {
9 entry:
10         %tmp.1 = call long %llvm.ctpop( long %x ) 
11         ret long %tmp.1
12 }