Commit e6956a6e authored by Måns Rullgård's avatar Måns Rullgård

ARM: first value loaded in AV_RN64 needs to be early-clobber

Originally committed as revision 19656 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7f6d9b30
...@@ -58,7 +58,7 @@ static inline uint64_t AV_RN64(const void *p) ...@@ -58,7 +58,7 @@ static inline uint64_t AV_RN64(const void *p)
union { uint64_t v; uint32_t hl[2]; } v; union { uint64_t v; uint32_t hl[2]; } v;
__asm__ ("ldr %0, %2 \n\t" __asm__ ("ldr %0, %2 \n\t"
"ldr %1, %3 \n\t" "ldr %1, %3 \n\t"
: "=r"(v.hl[0]), "=r"(v.hl[1]) : "=&r"(v.hl[0]), "=r"(v.hl[1])
: "m"(*(const uint32_t*)p), "m"(*((const uint32_t*)p+1))); : "m"(*(const uint32_t*)p), "m"(*((const uint32_t*)p+1)));
return v.v; return v.v;
} }
......
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