llvm-for-llvmta/tools/clang/test/CodeGen/2006-01-16-BitCountIntrinsi...

13 lines
236 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
unsigned t2(unsigned X) {
// CHECK: t2
// CHECK: llvm.ctlz.i32
return __builtin_clz(X);
}
int t1(int X) {
// CHECK: t1
// CHECK: llvm.ctlz.i32
return __builtin_clz(X);
}