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_math16_armv6.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/codecs/demac/libdemac/vector_math16_armv6.h') 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) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", "r4", - "r5", "r6", "r7", "memory" + "r5", "r6", "r7", "cc", "memory" ); return res; } @@ -365,7 +365,7 @@ static inline int32_t vector_sp_sub(int16_t* v1, int16_t* f2, int16_t* s2) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", "r4", - "r5", "r6", "r7", "memory" + "r5", "r6", "r7", "cc", "memory" ); return res; } @@ -484,7 +484,7 @@ static inline int32_t scalarproduct(int16_t* v1, int16_t* v2) : /* inputs */ : /* clobbers */ "r0", "r1", "r2", "r3", - "r4", "r5", "r6", "r7" + "r4", "r5", "r6", "r7", "cc", "memory" ); return res; } -- cgit v1.2.3