summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorDave Hooper <dave@beermex.com>2010-02-17 01:00:45 +0000
committerDave Hooper <dave@beermex.com>2010-02-17 01:00:45 +0000
commit7f01b7479a3ddac72b52bdd376522a1812d359ad (patch)
tree6c88fd7d6f3516cfccdb2b8b3f54c44e94b76a4b /apps/codecs
parent65524120279a82f8a3b97ccbe2ea7b8f0e454d58 (diff)
FIx typo in coldfire asm which caused yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24715 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/lib/asm_mcf5249.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/lib/asm_mcf5249.h b/apps/codecs/lib/asm_mcf5249.h
index 33b2c9aa9d..2888f6dc54 100644
--- a/apps/codecs/lib/asm_mcf5249.h
+++ b/apps/codecs/lib/asm_mcf5249.h
@@ -132,7 +132,7 @@ void XNPROD31(int32_t a, int32_t b,
"msac.l %[a], %[v], %%acc1;" \
"movclr.l %%acc0, %[x];" \
"movclr.l %%acc1, %[y];" \
- : [x] "+&d" (_x), [y] "=&d" (_y) \
+ : [x] "=&d" (_x), [y] "=&d" (_y) \
: [a] "r" (_a), [b] "r" (_b), \
[t] "r" (_t), [v] "r" (_v) \
: "cc");
@@ -144,7 +144,7 @@ void XNPROD31(int32_t a, int32_t b,
"mac.l %[a], %[v], %%acc1;" \
"movclr.l %%acc0, %[x];" \
"movclr.l %%acc1, %[y];" \
- : [x] "+&d" (_x), [y] "=&d" (_y) \
+ : [x] "=&d" (_x), [y] "=&d" (_y) \
: [a] "r" (_a), [b] "r" (_b), \
[t] "r" (_t), [v] "r" (_v) \
: "cc");