shithub: sl

ref: 049f033da6f343ab823d3e7eba9350fb8cf5815a
dir: /builtins_plan9.c/

View raw version
#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;
}