2010-10-11 21:28:05 +02:00
|
|
|
/*
|
|
|
|
* build-tests/__builtin_clz.c
|
|
|
|
*
|
|
|
|
* test if the compiler has __builtin_clz().
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (__builtin_clz(42));
|
|
|
|
}
|
2015-12-12 17:37:35 +01:00
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|