mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
ARM: first value loaded in AV_RN64 needs to be early-clobber
Originally committed as revision 19656 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7f6d9b3089
commit
e6956a6e48
@ -58,7 +58,7 @@ static inline uint64_t AV_RN64(const void *p)
|
||||
union { uint64_t v; uint32_t hl[2]; } v;
|
||||
__asm__ ("ldr %0, %2 \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)));
|
||||
return v.v;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user