mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
4 lines
184 B
C
4 lines
184 B
C
// RUN: %clang_cc1 -emit-llvm %s -o - | grep 'cttz' | count 2
|
|
// RUN: %clang_cc1 -emit-llvm %s -o - | grep 'ctlz' | count 2
|
|
|
|
int a(int a) {return __builtin_ctz(a) + __builtin_clz(a);}
|