make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / CodeGen / Blackfin / ctpop16.ll
blobcbbb3d9831a8006411904b213659be27322d107e
1 ; RUN: llc < %s -march=bfin
3 declare i16 @llvm.ctpop.i16(i16)
5 define i16 @ctpoptest(i16 %B) {
6         %b = call i16 @llvm.ctpop.i16( i16 %B )         ; <i16> [#uses=1]
7         ret i16 %b;
9 define i16 @ctpoptest_z(i16 zeroext %B) {
10         %b = call i16 @llvm.ctpop.i16( i16 %B )         ; <i16> [#uses=1]
11         ret i16 %b;
14 define i16 @ctpoptest_s(i16 signext %B) {
15         %b = call i16 @llvm.ctpop.i16( i16 %B )         ; <i16> [#uses=1]
16         ret i16 %b;