Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2007-08-22-CTTZ.c
blob: 9067c5a767e3ea308390a41620c7d1664e398274 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
int
bork
(
unsigned
long
long
x
)
{
// CHECK: llvm.cttz.i64
// CHECK: llvm.cttz.i64
// CHECK-NOT: lshr
return
__builtin_ctzll
(
x
);
}