ref: 7f8144b1b6c3772dbbadb5a12e37a0b99b32d77b dir: /builtins_plan9.c/
#include "platform.h" int __builtin_clz(unsigned int x) { unsigned int r; if(x == 0) return 32; for(r = 0; (x & (1UL<<31)) == 0; x <<= 1, r++); return r; }