From 68054481958397a2ef348cbb19333b5c188adec9 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sat, 29 May 2010 15:00:10 +0000 Subject: 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 --- apps/codecs/demac/libdemac/vector_math32_armv4.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/codecs/demac/libdemac/vector_math32_armv4.h') 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) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", "r4", - "r5", "r6", "r7", "memory" + "r5", "r6", "r7", "cc", "memory" ); return res; } @@ -149,7 +149,7 @@ static inline int32_t vector_sp_sub(int32_t* v1, int32_t* f2, int32_t* s2) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", "r4", - "r5", "r6", "r7", "memory" + "r5", "r6", "r7", "cc", "memory" ); return res; } @@ -195,7 +195,7 @@ static inline int32_t scalarproduct(int32_t* v1, int32_t* v2) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", - "r4", "r5", "r6", "r7" + "r4", "r5", "r6", "r7", "cc", "memory" ); return res; } -- cgit v1.2.3