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

declare i16 @llvm.ctlz.i16(i16)

define i16 @ctlztest(i16 %B) {
	%b = call i16 @llvm.ctlz.i16( i16 %B )		; <i16> [#uses=1]
	ret i16 %b;
}
define i16 @ctlztest_z(i16 zeroext %B) {
	%b = call i16 @llvm.ctlz.i16( i16 %B )		; <i16> [#uses=1]
	ret i16 %b;
}

define i16 @ctlztest_s(i16 signext %B) {
	%b = call i16 @llvm.ctlz.i16( i16 %B )		; <i16> [#uses=1]
	ret i16 %b;
}

OpenPOWER on IntegriCloud