builtin_20_ctz.c (80B)
1 int test_main(void) { 2 unsigned x = 1u << 5; 3 return __builtin_ctz(x) + 37; 4 }