summaryrefslogtreecommitdiff
path: root/libavcodec/alpha
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2003-07-25 13:15:16 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2003-07-25 13:15:16 +0000
commit669e5093f63eda266e310d304ffc4a37a8c382a2 (patch)
treefda26dde486c628855b0cd5d16b582b68c8ae52b /libavcodec/alpha
parent008f085172255497ab08700f1a60d89a1c3385ca (diff)
warning fixes
Originally committed as revision 2082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alpha')
-rw-r--r--libavcodec/alpha/asm.h4
1 files changed, 2 insertions, 2 deletions
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;