mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 16:09:46 -04:00
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);
|
|
}
|