Commit c1d132d3 authored by mru's avatar mru

ARM: Kill warning in bswap_32()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15648 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e878b74e
......@@ -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"
......
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