Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s -o - | grep 'cttz' | count 2
      2 // RUN: %clang_cc1 -emit-llvm %s -o - | grep 'ctlz' | count 2
      3 
      4 int a(int a) {return __builtin_ctz(a) + __builtin_clz(a);}
      5