From 15056dd65026023352069f58403c997be7fb9496 Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 10 Jul 2024 13:48:42 -0300 Subject: [PATCH] x86/intreadwrite.h: add missing preprocessor checks Removed by accident in the previous commits. This makes the code only run when compiled with GCC and Clang like before. Support for other compilers like msvc can be added later. Signed-off-by: James Almer --- libavutil/x86/intreadwrite.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavutil/x86/intreadwrite.h b/libavutil/x86/intreadwrite.h index 6546eb016c..fd21143dd9 100644 --- a/libavutil/x86/intreadwrite.h +++ b/libavutil/x86/intreadwrite.h @@ -22,16 +22,16 @@ #define AVUTIL_X86_INTREADWRITE_H #include -#if HAVE_INTRINSICS_SSE +#if HAVE_INTRINSICS_SSE && defined(__SSE__) #include #endif -#if HAVE_INTRINSICS_SSE2 +#if HAVE_INTRINSICS_SSE2 && defined(__SSE2__) #include #endif #include "config.h" #include "libavutil/attributes.h" -#if HAVE_INTRINSICS_SSE +#if HAVE_INTRINSICS_SSE && defined(__SSE__) #define AV_COPY128 AV_COPY128 static av_always_inline void AV_COPY128(void *d, const void *s) @@ -40,9 +40,9 @@ static av_always_inline void AV_COPY128(void *d, const void *s) _mm_store_ps(d, tmp); } -#endif /* HAVE_INTRINSICS_SSE */ +#endif /* HAVE_INTRINSICS_SSE && defined(__SSE__) */ -#if HAVE_INTRINSICS_SSE2 +#if HAVE_INTRINSICS_SSE2 && defined(__SSE2__) #define AV_ZERO128 AV_ZERO128 static av_always_inline void AV_ZERO128(void *d) @@ -51,6 +51,6 @@ static av_always_inline void AV_ZERO128(void *d) _mm_store_si128(d, zero); } -#endif /* HAVE_INTRINSICS_SSE2 */ +#endif /* HAVE_INTRINSICS_SSE2 && defined(__SSE2__) */ #endif /* AVUTIL_X86_INTREADWRITE_H */