From 669e5093f63eda266e310d304ffc4a37a8c382a2 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 25 Jul 2003 13:15:16 +0000 Subject: warning fixes Originally committed as revision 2082 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/alpha/asm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/alpha') diff --git a/libavcodec/alpha/asm.h b/libavcodec/alpha/asm.h index c2983125a0..9520a9fb59 100644 --- a/libavcodec/alpha/asm.h +++ b/libavcodec/alpha/asm.h @@ -42,14 +42,14 @@ #define AMASK_CIX (1 << 2) #define AMASK_MVI (1 << 8) -inline static uint64_t BYTE_VEC(uint64_t x) +static inline uint64_t BYTE_VEC(uint64_t x) { x |= x << 8; x |= x << 16; x |= x << 32; return x; } -inline static uint64_t WORD_VEC(uint64_t x) +static inline uint64_t WORD_VEC(uint64_t x) { x |= x << 16; x |= x << 32; -- cgit v1.2.3