summaryrefslogtreecommitdiff
path: root/libavcodec/alpha
diff options
context:
space:
mode:
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;