blob: 9067c5a767e3ea308390a41620c7d1664e398274 (
about) (
plain)
1
2
3
4
5
6
7
8
|
// 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);
}
|