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
/
PowerPC
/
cttz.ll
blob
ab493a068a32cea527eaed7f66d01862ad0044d0
1
; Make sure this testcase does not use ctpop
2
; RUN: llc < %s -march=ppc32 | grep -i cntlzw
3
4
declare i32 @llvm.cttz.i32(i32)
5
6
define i32 @bar(i32 %x) {
7
entry:
8
%tmp.1 = call i32 @llvm.cttz.i32( i32 %x ) ; <i32> [#uses=1]
9
ret i32 %tmp.1
10
}
11