2005-05-04 15:56:34 +00:00
|
|
|
; Make sure this testcase codegens to the ctpop instruction
|
2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev67 | grep -i 'ctpop'
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=+CIX | grep -i 'ctpop'
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev6 | not grep -i 'ctpop'
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev56 | not grep -i 'ctpop'
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=-CIX | not grep -i 'ctpop'
|
2005-09-30 20:30:24 +00:00
|
|
|
|
2005-05-04 15:20:16 +00:00
|
|
|
|
|
|
|
declare long %llvm.ctpop(long)
|
|
|
|
|
|
|
|
implementation ; Functions:
|
|
|
|
|
|
|
|
long %bar(long %x) {
|
|
|
|
entry:
|
|
|
|
%tmp.1 = call long %llvm.ctpop( long %x )
|
|
|
|
ret long %tmp.1
|
|
|
|
}
|