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.
This commit is contained in:
Lena 2016-07-20 00:13:24 +02:00 committed by Jonathan Li
parent 1e92c24847
commit 5a17b95901

View File

@ -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