[FFmpeg-cvslog] r15648 - trunk/libavutil/bswap.h

mru subversion
Mon Oct 20 02:03:25 CEST 2008


Author: mru
Date: Mon Oct 20 02:03:25 2008
New Revision: 15648

Log:
ARM: Kill warning in bswap_32()

Modified:
   trunk/libavutil/bswap.h

Modified: trunk/libavutil/bswap.h
==============================================================================
--- trunk/libavutil/bswap.h	(original)
+++ trunk/libavutil/bswap.h	Mon Oct 20 02:03:25 2008
@@ -68,7 +68,7 @@ static av_always_inline av_const uint32_
          "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"




More information about the ffmpeg-cvslog mailing list