From b5df5cbc5aa44c0de511ddfc3e6ecd7b22d8f97c Mon Sep 17 00:00:00 2001 From: nls Date: Sun, 27 Jun 2010 15:15:46 +0000 Subject: [PATCH] Fix inline asm argument. Shouldn't have much impact in practice but might save a load if gcc is clever. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27157 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/lib/fft-ffmpeg_arm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/codecs/lib/fft-ffmpeg_arm.h b/apps/codecs/lib/fft-ffmpeg_arm.h index b1406e760..9d396a3fc 100644 --- a/apps/codecs/lib/fft-ffmpeg_arm.h +++ b/apps/codecs/lib/fft-ffmpeg_arm.h @@ -325,8 +325,8 @@ static inline void fft8( FFTComplex * z ) "stmia %[z_ptr],{r7,r8}\n\t" /* write out z[0].re, z[0].im */ "stmdb %[z4_ptr], {r1,r2}\n\t" /* write out z[4].re, z[4].im */ - : [z4_ptr] "+r" (m4), [z_ptr] "+r" (z), [temp] "=r" (temp) - : + : [z4_ptr] "+r" (m4), [temp] "=r" (temp) + : [z_ptr] "r" (z) : "r1","r2","r3","r4","r5","r6","r7","r8","memory" ); } -- 2.11.4.GIT