Commit cb93c9df authored by mru's avatar mru

Alpha: add some const, kill some warnings

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16665 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e73ef98d
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment