unsigned util_last_bit_signed(int i) { return 31 - __builtin_clrsb(i); } int main() { return 0; }