From c354ba2d2ed92543d68ebeb84b1f7de591b71daf Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 8 Nov 2018 14:18:34 +0400 Subject: [PATCH] Fix Resample_bsinc_SSE pointer casts. Regression was introduced in 5ec11a017c. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 39b80250..6fea142a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -402,7 +402,7 @@ int main() IF(HAVE___BUILTIN_ASSUME_ALIGNED) SET(ASSUME_ALIGNED_DECL "__builtin_assume_aligned(x, y)") ELSE() - SET(ASSUME_ALIGNED_DECL "x") + SET(ASSUME_ALIGNED_DECL "(x)") ENDIF() SET(SSE_SWITCH "")