From c2a8cc2ad3f4b31243cbf577440ee45bafcc7f92 Mon Sep 17 00:00:00 2001 From: AlexeyAB Date: Thu, 16 Aug 2018 03:02:54 +0300 Subject: [PATCH] Fix GCC compile --- src/gemm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gemm.c b/src/gemm.c index 4198540e..6a34da5e 100644 --- a/src/gemm.c +++ b/src/gemm.c @@ -370,7 +370,6 @@ void asm_cpuid(uint32_t* abcd, uint32_t eax) #define cpuid(info, x) __cpuidex(info, x, 0) #else // GCC Intrinsics -#include void cpuid(int info[4], int InfoType) { __cpuid_count(InfoType, 0, info[0], info[1], info[2], info[3]); }