mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ARM: Kill warning in bswap_32()
Originally committed as revision 15648 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9655ffb59e
commit
e80b267536
@ -68,7 +68,7 @@ static av_always_inline av_const uint32_t bswap_32(uint32_t x)
|
|||||||
"bic %1, %1, #0xFF0000 \n\t"
|
"bic %1, %1, #0xFF0000 \n\t"
|
||||||
"mov %0, %0, ror #8 \n\t"
|
"mov %0, %0, ror #8 \n\t"
|
||||||
"eor %0, %0, %1, lsr #8 \n\t"
|
"eor %0, %0, %1, lsr #8 \n\t"
|
||||||
: "+r"(x), "+r"(t));
|
: "+r"(x), "=&r"(t));
|
||||||
#elif defined(ARCH_BFIN)
|
#elif defined(ARCH_BFIN)
|
||||||
unsigned tmp;
|
unsigned tmp;
|
||||||
__asm__("%1 = %0 >> 8 (V); \n\t"
|
__asm__("%1 = %0 >> 8 (V); \n\t"
|
||||||
|
Loading…
Reference in New Issue
Block a user