From 5a17b959013820a7dec505a0809f773894cbaf5c Mon Sep 17 00:00:00 2001 From: Lena Date: Wed, 20 Jul 2016 00:13:24 +0200 Subject: [PATCH] x86_intrin.h: fix build using GCC (#1468) __GNUG__ is not defined while compiling this file, this causes the build to fail. Replacing this with __GNUC__ fixes this. --- common/include/x86emitter/x86_intrin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/x86emitter/x86_intrin.h b/common/include/x86emitter/x86_intrin.h index 95fa0c98d7..19f3a0636a 100644 --- a/common/include/x86emitter/x86_intrin.h +++ b/common/include/x86emitter/x86_intrin.h @@ -16,7 +16,7 @@ #pragma once // Because nobody can't agree on a single name ! -#if defined(__GNUG__) +#if defined(__GNUC__) // Yes there are several files for the same features! // x86intrin.h which is the general include provided by the compiler