summaryrefslogtreecommitdiff
path: root/apps/codecs/demac/libdemac/vector_math16_armv6.h
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-05-29 15:00:10 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-05-29 15:00:10 +0000
commit68054481958397a2ef348cbb19333b5c188adec9 (patch)
tree92bf8f91b65facfc18aa0bd591956a6dc46f83ee /apps/codecs/demac/libdemac/vector_math16_armv6.h
parent9ab57e510e5ff64c5ce3d6bf47d7bf1ff8261e01 (diff)
downloadrockbox-68054481958397a2ef348cbb19333b5c188adec9.tar.gz
rockbox-68054481958397a2ef348cbb19333b5c188adec9.zip
Correction to clobber lists of several codec's inline assembly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26376 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/demac/libdemac/vector_math16_armv6.h')
-rw-r--r--apps/codecs/demac/libdemac/vector_math16_armv6.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/demac/libdemac/vector_math16_armv6.h b/apps/codecs/demac/libdemac/vector_math16_armv6.h
index 2ce62728cb..8d27331b62 100644
--- a/apps/codecs/demac/libdemac/vector_math16_armv6.h
+++ b/apps/codecs/demac/libdemac/vector_math16_armv6.h
@@ -196,7 +196,7 @@ static inline int32_t vector_sp_add(int16_t* v1, int16_t* f2, int16_t* s2)
196 : /* inputs */ 196 : /* inputs */
197 : /* clobbers */ 197 : /* clobbers */
198 "r0", "r1", "r2", "r3", "r4", 198 "r0", "r1", "r2", "r3", "r4",
199 "r5", "r6", "r7", "memory" 199 "r5", "r6", "r7", "cc", "memory"
200 ); 200 );
201 return res; 201 return res;
202} 202}
@@ -365,7 +365,7 @@ static inline int32_t vector_sp_sub(int16_t* v1, int16_t* f2, int16_t* s2)
365 : /* inputs */ 365 : /* inputs */
366 : /* clobbers */ 366 : /* clobbers */
367 "r0", "r1", "r2", "r3", "r4", 367 "r0", "r1", "r2", "r3", "r4",
368 "r5", "r6", "r7", "memory" 368 "r5", "r6", "r7", "cc", "memory"
369 ); 369 );
370 return res; 370 return res;
371} 371}
@@ -484,7 +484,7 @@ static inline int32_t scalarproduct(int16_t* v1, int16_t* v2)
484 : /* inputs */ 484 : /* inputs */
485 : /* clobbers */ 485 : /* clobbers */
486 "r0", "r1", "r2", "r3", 486 "r0", "r1", "r2", "r3",
487 "r4", "r5", "r6", "r7" 487 "r4", "r5", "r6", "r7", "cc", "memory"
488 ); 488 );
489 return res; 489 return res;
490} 490}