summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2006-01-16-BitCountIntrinsicsUnsigned.c
blob: ba7820a0db6c99a7841f9cf82586eb03fd31c64b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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);
}