mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
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:
parent
164b7c9543
commit
82cd7ff17f
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue