57a4c95adb6a43edf85b86a9538502d8b25d15e9
[mesa.git] / src / amd / vulkan / radv_util.h
1 #pragma once
2
3 #ifdef HAVE___BUILTIN_POPCOUNT
4 #define util_bitcount(i) __builtin_popcount(i)
5 #else
6 extern unsigned int
7 util_bitcount(unsigned int n);
8 #endif
9