diff options
author | John Preston <[email protected]> | 2018-11-08 14:18:34 +0400 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-08 03:59:19 -0800 |
commit | 14cf721094228b4f02af9dbfce7a93edd3bdf706 (patch) | |
tree | 390c29e2a31dd5dca282c8f037ea1d521d110302 /CMakeLists.txt | |
parent | 515bc4ba53c81d375e9a96dc62398c62d36d56c0 (diff) |
Fix Resample_bsinc_SSE pointer casts.
Regression was introduced in 5ec11a017c.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 "") |