repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use static inline to do the right thing when built in C99 mode. Of course,
[llvm/stm8.git]
/
test
/
CodeGen
/
ARM
/
clz.ll
blob
e381e0029819b1358818519b5e4385a4146986a8
1
; RUN: llc < %s -march=arm -mattr=+v5t | FileCheck %s
2
3
declare i32 @llvm.ctlz.i32(i32)
4
5
define i32 @test(i32 %x) {
6
; CHECK: test
7
; CHECK: clz r0, r0
8
%tmp.1 = call i32 @llvm.ctlz.i32( i32 %x )
9
ret i32 %tmp.1
10
}