Merge branch 'vmwgfx-fixes-4.3' of git://people.freedesktop.org/~thomash/linux
[firefly-linux-kernel-4.4.55.git] / tools / build / feature / test-get_cpuid.c
1 #include <cpuid.h>
2
3 int main(void)
4 {
5         unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0;
6         return __get_cpuid(0x15, &eax, &ebx, &ecx, &edx);
7 }