summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-05-25 13:32:53 +0000
committerThom Johansen <thomj@rockbox.org>2005-05-25 13:32:53 +0000
commitce5119cc6c1a291d12695c1dbf1956a30813ecb4 (patch)
treedccceefce901fa97fac0e861e3acd449cfa225d9
parentecf86f03f72d91107f15342d51d2e1248040c82b (diff)
downloadrockbox-ce5119cc6c1a291d12695c1dbf1956a30813ecb4.tar.gz
rockbox-ce5119cc6c1a291d12695c1dbf1956a30813ecb4.zip
Aligns in the middle of code is unnecessary.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6524 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libmad/imdct_mcf5249.S3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/codecs/libmad/imdct_mcf5249.S b/apps/codecs/libmad/imdct_mcf5249.S
index be0072f674..62b33c3f07 100644
--- a/apps/codecs/libmad/imdct_mcf5249.S
+++ b/apps/codecs/libmad/imdct_mcf5249.S
@@ -34,7 +34,6 @@ III_imdct_s:
34 */ 34 */
35 move.l #0xb0, %macsr /* frac mode, saturation, rounding */ 35 move.l #0xb0, %macsr /* frac mode, saturation, rounding */
36 sub.l %a0, %a0 /* clear loop variable */ 36 sub.l %a0, %a0 /* clear loop variable */
37 .align 2
38.imdctloop: /* outer loop label */ 37.imdctloop: /* outer loop label */
39 lea.l imdct_s, %a1 /* load pointer to imdct coefs in a1 */ 38 lea.l imdct_s, %a1 /* load pointer to imdct coefs in a1 */
40 movem.l (%a2), %d0-%d5 /* load some input data in d0-d5 */ 39 movem.l (%a2), %d0-%d5 /* load some input data in d0-d5 */
@@ -42,7 +41,6 @@ III_imdct_s:
42 41
43 clr.l %d7 /* clear loop variable */ 42 clr.l %d7 /* clear loop variable */
44 move.l (%a1)+, %a4 /* load imdct coef in a4 */ 43 move.l (%a1)+, %a4 /* load imdct coef in a4 */
45 .align 2
46.macloop: /* inner loop label */ 44.macloop: /* inner loop label */
47 mac.l %d0, %a4, (%a1)+, %a4, %acc0 /* mac sequence */ 45 mac.l %d0, %a4, (%a1)+, %a4, %acc0 /* mac sequence */
48 mac.l %d1, %a4, (%a1)+, %a4, %acc0 46 mac.l %d1, %a4, (%a1)+, %a4, %acc0
@@ -85,7 +83,6 @@ III_imdct_s:
85 lea.l window_s, %a4 /* a4 = window coef pointer */ 83 lea.l window_s, %a4 /* a4 = window coef pointer */
86 84
87 moveq.l #6, %d7 /* six iterations */ 85 moveq.l #6, %d7 /* six iterations */
88 .align 2
89.overlaploop: 86.overlaploop:
90 clr.l (%a2) /* z[i + 0] = 0 */ 87 clr.l (%a2) /* z[i + 0] = 0 */
91 move.l (%a4), %d0 88 move.l (%a4), %d0