avutil/x86/intmath: Fix intrinsic header include when using newer gcc with older icc.

Signed-off-by: Matt Oliver <protogonoi@gmail.com>
This commit is contained in:
Matt Oliver 2015-11-12 16:54:08 +11:00
parent 9b9c9ef3b4
commit 58d32c00be

View File

@ -26,7 +26,7 @@
#if defined(_MSC_VER)
#include <intrin.h>
#elif defined(__INTEL_COMPILER)
#include <x86intrin.h>
#include <immintrin.h>
#endif
#endif
#include "config.h"