summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2010-06-27 15:15:46 +0000
committerNils Wallménius <nils@rockbox.org>2010-06-27 15:15:46 +0000
commit99517d631953fe6728efafc8423f41dc673b0d80 (patch)
tree27a276070f7a5e17f8d61712a6bb6bac3598ba6b
parent1a3b93cf7dcadc4c3fda3473836ab5198c01ae2b (diff)
downloadrockbox-99517d631953fe6728efafc8423f41dc673b0d80.tar.gz
rockbox-99517d631953fe6728efafc8423f41dc673b0d80.zip
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
-rw-r--r--apps/codecs/lib/fft-ffmpeg_arm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/lib/fft-ffmpeg_arm.h b/apps/codecs/lib/fft-ffmpeg_arm.h
index b1406e760a..9d396a3fc0 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 )
325 325
326 "stmia %[z_ptr],{r7,r8}\n\t" /* write out z[0].re, z[0].im */ 326 "stmia %[z_ptr],{r7,r8}\n\t" /* write out z[0].re, z[0].im */
327 "stmdb %[z4_ptr], {r1,r2}\n\t" /* write out z[4].re, z[4].im */ 327 "stmdb %[z4_ptr], {r1,r2}\n\t" /* write out z[4].re, z[4].im */
328 : [z4_ptr] "+r" (m4), [z_ptr] "+r" (z), [temp] "=r" (temp) 328 : [z4_ptr] "+r" (m4), [temp] "=r" (temp)
329 : 329 : [z_ptr] "r" (z)
330 : "r1","r2","r3","r4","r5","r6","r7","r8","memory" 330 : "r1","r2","r3","r4","r5","r6","r7","r8","memory"
331 ); 331 );
332 } 332 }