Skip to content
Snippets Groups Projects
Commit ddac3053 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avutil/ppc/util_altivec: add () to VEC_LD macro arguments

parent 1a1a98f6
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ do { \ ...@@ -87,7 +87,7 @@ do { \
#if HAVE_BIGENDIAN #if HAVE_BIGENDIAN
#define VEC_LD(offset,b) \ #define VEC_LD(offset,b) \
vec_perm(vec_ld(offset, b), vec_ld(offset+15, b), vec_lvsl(offset, b)) vec_perm(vec_ld(offset, b), vec_ld((offset)+15, b), vec_lvsl(offset, b))
#else #else
#define VEC_LD(offset,b) \ #define VEC_LD(offset,b) \
vec_vsx_ld(offset, b) vec_vsx_ld(offset, b)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment