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
/
ctz.ll
blob
1d2ced37b0356ef8d8d8a857c1f497063305ae4d
1
; RUN: llc < %s -march=arm -mattr=+v6t2 | FileCheck %s
2
3
declare i32 @llvm.cttz.i32(i32)
4
5
define i32 @f1(i32 %a) {
6
; CHECK: f1:
7
; CHECK: rbit
8
; CHECK: clz
9
%tmp = call i32 @llvm.cttz.i32( i32 %a )
10
ret i32 %tmp
11
}