Commit 578d99e7 authored by Shivraj Patil's avatar Shivraj Patil Committed by Michael Niedermayer

avutil/mips/intreadwrite: build fix for mips64r6 (instruction 'lwl' not supported)

Signed-off-by: 's avatarShivraj Patil <shivraj.patil@imgtec.com>
Reviewed-by: 's avatarNedeljko Babic <Nedeljko.Babic@imgtec.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7fdd3142
......@@ -24,7 +24,7 @@
#include <stdint.h>
#include "config.h"
#if ARCH_MIPS64 && HAVE_INLINE_ASM
#if ARCH_MIPS64 && HAVE_INLINE_ASM && !HAVE_MIPS64R6
#define AV_RN32 AV_RN32
static av_always_inline uint32_t AV_RN32(const void *p)
......@@ -41,6 +41,6 @@ static av_always_inline uint32_t AV_RN32(const void *p)
return v;
}
#endif /* ARCH_MIPS64 && HAVE_INLINE_ASM */
#endif /* ARCH_MIPS64 && HAVE_INLINE_ASM && !HAVE_MIPS64R6 */
#endif /* AVUTIL_MIPS_INTREADWRITE_H */
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