Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2019-07-17 22:26:48 +0300
committerLuca Barbato <lu_zero@videolan.org>2019-07-27 16:41:39 +0300
commitd12418b3fbe4431aef922a7ab6ff9dd3a97155f1 (patch)
tree45ca16788207061c5d3ae2b9f947d6edcb720b3e /include
parentd04eab1574e175bdb6080267ba5a09ddf922a3aa (diff)
vsx: Set the correct alignment constraints
Diffstat (limited to 'include')
-rw-r--r--include/common/attributes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common/attributes.h b/include/common/attributes.h
index bd5e13d..3f32c0d 100644
--- a/include/common/attributes.h
+++ b/include/common/attributes.h
@@ -46,7 +46,7 @@
/* x86-64 needs 32-byte alignment for AVX2. */
#define ALIGN_32_VAL 32
#define ALIGN_16_VAL 16
-#elif ARCH_X86_32 || ARCH_ARM || ARCH_AARCH64
+#elif ARCH_X86_32 || ARCH_ARM || ARCH_AARCH64 || ARCH_PPC64LE
/* ARM doesn't benefit from anything more than 16-byte alignment. */
#define ALIGN_32_VAL 16
#define ALIGN_16_VAL 16