]> granicus.if.org Git - libvpx/commitdiff
Upstream Mozilla fix for older Apple clang builds
authorJohann <johannkoenig@google.com>
Tue, 13 Oct 2015 17:36:16 +0000 (10:36 -0700)
committerJohann <johannkoenig@google.com>
Wed, 14 Oct 2015 14:41:23 +0000 (07:41 -0700)
Also use the _mm_broadcastsi128_si256 intrisic for
Apple clang versions 4.[012]

https://bugzilla.mozilla.org/show_bug.cgi?id=1085607
https://code.google.com/p/webm/issues/detail?id=1082

Change-Id: I6bc821d8163387194ef663e94bfed91fa7281d88

vpx_dsp/x86/vpx_subpixel_8t_intrin_avx2.c

index 29ede19f76094337ebf191c7181b0f143e6072d0..b7186785379d962d8b0702b96c616def12646255 100644 (file)
@@ -41,7 +41,10 @@ DECLARE_ALIGNED(32, static const uint8_t, filt4_global_avx2[32]) = {
 
 #if defined(__clang__)
 # if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ <= 3) || \
-      (defined(__APPLE__) && __clang_major__ == 5 && __clang_minor__ == 0)
+    (defined(__APPLE__) && \
+        ((__clang_major__ == 4 && __clang_minor__ <= 2) || \
+            (__clang_major__ == 5 && __clang_minor__ == 0)))
+
 #  define MM256_BROADCASTSI128_SI256(x) \
        _mm_broadcastsi128_si256((__m128i const *)&(x))
 # else  // clang > 3.3, and not 5.0 on macosx.