repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2007-08-22-CTTZ.c
blob
9e74f24cdcb8ae00fd228ce9213731632ba64c41
1
// RUN: %llvmgcc -O2 -S -o - %s | grep {llvm.cttz.i64} | count 2
2
// RUN: %llvmgcc -O2 -S -o - %s | not grep {lshr}
3
4
int
bork
(
unsigned long long
x
) {
5
return
__builtin_ctzll
(
x
);
6
}