pcm as3525v1: correct ASM constraint

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_6@26776 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-06-11 14:04:31 +00:00
parent 164b7c9543
commit 82cd7ff17f

View file

@ -281,7 +281,7 @@ static inline void mono2stereo(int16_t *end)
" strh %0, [%1], #2 \n" // copy it in the right-channel " strh %0, [%1], #2 \n" // copy it in the right-channel
" cmp %1, %2 \n" // are we finished? " cmp %1, %2 \n" // are we finished?
" bne 1b \n" " bne 1b \n"
: "=r"(left), "+r"(mono_samples) : "=&r"(left), "+r"(mono_samples)
: "r"(end) : "r"(end)
: "memory" : "memory"
); );