1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 extern int ffs (int) __asm ("__GI_ffs") __attribute__ ((nothrow
, const));
7 ffsll (long long int i
)
9 unsigned long long int x
= i
& -i
;
14 return 32 + ffs (i
>> 32);
17 /* { dg-final { scan-assembler-not "\nffs\n|\nffs\[^a-zA-Z0-9_\]|\[^a-zA-Z0-9_\]ffs\n" } } */