summaryrefslogtreecommitdiff
path: root/apps/codecs/demac/libdemac/vector_math32_armv4.h
diff options
context:
space:
mode:
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}