1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
9 lines
191 B
C
9 lines
191 B
C
// 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);
|
|
}
|