summaryrefslogtreecommitdiff
path: root/test/CodeGen/Blackfin/ct64.ll
blob: 75024343ea4e35c5733df1e08a9540d2beec05b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -march=bfin

declare i64 @llvm.ctlz.i64(i64)
declare i64 @llvm.cttz.i64(i64)
declare i64 @llvm.ctpop.i64(i64)

define i64 @ctlztest(i64 %B) {
	%b = call i64 @llvm.ctlz.i64( i64 %B )
	ret i64 %b
}

define i64 @cttztest(i64 %B) {
	%b = call i64 @llvm.cttz.i64( i64 %B )
	ret i64 %b
}

define i64 @ctpoptest(i64 %B) {
	%b = call i64 @llvm.ctpop.i64( i64 %B )
	ret i64 %b
}