1 /* { dg-do compile { target { powerpc*-*-* && ilp32 } } } */
2 /* { dg-require-effective-target powerpc_p9modulo_ok } */
3 /* { dg-options "-mdejagnu-cpu=power9 -O2" } */
4 
i_trailing_zero(int a)5 int i_trailing_zero (int a) { return __builtin_ctz (a); }
6 
7 /* { dg-final { scan-assembler     "cnttzw " } } */
8 /* { dg-final { scan-assembler-not "cntlzw " } } */
9