diff --git a/libavcodec/alpha/asm.h b/libavcodec/alpha/asm.h index 1877704e7bd6bbd2fc0400da553065b509022668..04d4f89a5af8cacbbbad87027394c4324638f9b1 100644 --- a/libavcodec/alpha/asm.h +++ b/libavcodec/alpha/asm.h @@ -62,12 +62,12 @@ static inline uint64_t WORD_VEC(uint64_t x) #ifdef __GNUC__ #define ldq(p) \ - (((union { \ + (((const union { \ uint64_t __l; \ __typeof__(*(p)) __s[sizeof (uint64_t) / sizeof *(p)]; \ } *) (p))->__l) #define ldl(p) \ - (((union { \ + (((const union { \ int32_t __l; \ __typeof__(*(p)) __s[sizeof (int32_t) / sizeof *(p)]; \ } *) (p))->__l)