summaryrefslogtreecommitdiff
path: root/apps/codecs/demac/libdemac/vector_math32_armv4.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_math32_armv4.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_math32_armv4.h')
-rw-r--r--apps/codecs/demac/libdemac/vector_math32_armv4.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/demac/libdemac/vector_math32_armv4.h b/apps/codecs/demac/libdemac/vector_math32_armv4.h
index cb5fe9e0ee..d6bb9b0d9c 100644
--- a/apps/codecs/demac/libdemac/vector_math32_armv4.h
+++ b/apps/codecs/demac/libdemac/vector_math32_armv4.h
@@ -89,7 +89,7 @@ static inline int32_t vector_sp_add(int32_t* v1, int32_t* f2, int32_t* s2)
89 : /* inputs */ 89 : /* inputs */
90 : /* clobbers */ 90 : /* clobbers */
91 "r0", "r1", "r2", "r3", "r4", 91 "r0", "r1", "r2", "r3", "r4",
92 "r5", "r6", "r7", "memory" 92 "r5", "r6", "r7", "cc", "memory"
93 ); 93 );
94 return res; 94 return res;
95} 95}
@@ -149,7 +149,7 @@ static inline int32_t vector_sp_sub(int32_t* v1, int32_t* f2, int32_t* s2)
149 : /* inputs */ 149 : /* inputs */
150 : /* clobbers */ 150 : /* clobbers */
151 "r0", "r1", "r2", "r3", "r4", 151 "r0", "r1", "r2", "r3", "r4",
152 "r5", "r6", "r7", "memory" 152 "r5", "r6", "r7", "cc", "memory"
153 ); 153 );
154 return res; 154 return res;
155} 155}
@@ -195,7 +195,7 @@ static inline int32_t scalarproduct(int32_t* v1, int32_t* v2)
195 : /* inputs */ 195 : /* inputs */
196 : /* clobbers */ 196 : /* clobbers */
197 "r0", "r1", "r2", "r3", 197 "r0", "r1", "r2", "r3",
198 "r4", "r5", "r6", "r7" 198 "r4", "r5", "r6", "r7", "cc", "memory"
199 ); 199 );
200 return res; 200 return res;
201} 201}