summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Blackfin/ct32.ll
blob: e9b66ebe5772bd8b3d3be4a9e4d88c0759ff508c (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 i32 @llvm.ctlz.i32(i32)
declare i32 @llvm.cttz.i32(i32)
declare i32 @llvm.ctpop.i32(i32)

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

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

define i32 @ctpoptest(i32 %B) {
	%b = call i32 @llvm.ctpop.i32( i32 %B )
	ret i32 %b;
}
OpenPOWER on IntegriCloud