Mercurial > libavutil.hg
changeset 579:2ec148d26d9f libavutil
ARM: Kill warning in bswap_32()
author | mru |
---|---|
date | Mon, 20 Oct 2008 00:03:25 +0000 |
parents | b20a4eb68876 |
children | fddfdadb477f |
files | bswap.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/bswap.h Thu Oct 16 13:34:09 2008 +0000 +++ b/bswap.h Mon Oct 20 00:03:25 2008 +0000 @@ -68,7 +68,7 @@ "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"