summaryrefslogtreecommitdiff
path: root/libavutil/bswap.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-10-20 00:03:25 +0000
committerMåns Rullgård <mans@mansr.com>2008-10-20 00:03:25 +0000
commite80b2675363f486aa44671fe67136137b2d86686 (patch)
tree9c2f889c1b6e6c59cb212a0c2b7154363786d005 /libavutil/bswap.h
parent9655ffb59e7a4a7bf29d318c0c11d5f10317406e (diff)
ARM: Kill warning in bswap_32()
Originally committed as revision 15648 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/bswap.h')
-rw-r--r--libavutil/bswap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/bswap.h b/libavutil/bswap.h
index 8e6b1b20f1..3d0a2a7c8d 100644
--- a/libavutil/bswap.h
+++ b/libavutil/bswap.h
@@ -68,7 +68,7 @@ static av_always_inline av_const uint32_t bswap_32(uint32_t x)
"bic %1, %1, #0xFF0000 \n\t"
"mov %0, %0, ror #8 \n\t"
"eor %0, %0, %1, lsr #8 \n\t"
- : "+r"(x), "+r"(t));
+ : "+r"(x), "=&r"(t));
#elif defined(ARCH_BFIN)
unsigned tmp;
__asm__("%1 = %0 >> 8 (V); \n\t"