libwebp/aarch64-disable-neon.diff

23 lines
798 B
Diff
Raw Normal View History

From: dmueller@suse.com
Date: Tue Oct 28 06:45:02 UTC 2014
Upstream: never
incompatible types when initializing type 'int32x4_t' using type 'int32x2_t'
---
src/dsp/dsp.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: libwebp-0.4.3/src/dsp/dsp.h
===================================================================
--- libwebp-0.4.3.orig/src/dsp/dsp.h
+++ libwebp-0.4.3/src/dsp/dsp.h
@@ -69,7 +69,7 @@ extern "C" {
// The intrinsics currently cause compiler errors with arm-nacl-gcc and the
// inline assembly would need to be modified for use with Native Client.
#if (defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON) || \
- defined(__aarch64__)) && !defined(__native_client__)
+ 0 ) && !defined(__native_client__)
#define WEBP_USE_NEON
#endif