Merge tag 'pci-v4.4-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[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 }