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
This commit is contained in:
parent
1a3b93cf7d
commit
99517d6319
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue