llvm-project/clang/test/CodeGen/builtin-count-zeros.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

5 lines
183 B
C

// RUN: clang-cc -emit-llvm %s -o - | grep 'cttz' | count 2 &&
// RUN: clang-cc -emit-llvm %s -o - | grep 'ctlz' | count 2
int a(int a) {return __builtin_ctz(a) + __builtin_clz(a);}