diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-13 19:03:14 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-01-13 19:09:59 +0000 |
commit | 71b3a63e9c87057a1cc1431ac1edd6854e1e4e44 (patch) | |
tree | 5e839f15f12234a7f16d26a07bae5fbb9e8953f2 /libavcodec | |
parent | 5c5e1ea3cdccc5af0b2d3de15a9c3739c30ec88c (diff) | |
download | ffmpeg-71b3a63e9c87057a1cc1431ac1edd6854e1e4e44.tar.gz |
ARM: fix Thumb-mode simple_idct_arm
The alignment directive must obviously precede the label.
This was never noticed in ARM mode since the location is
already aligned there.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/arm/simple_idct_arm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/simple_idct_arm.S b/libavcodec/arm/simple_idct_arm.S index 1490f539df..a9c3095157 100644 --- a/libavcodec/arm/simple_idct_arm.S +++ b/libavcodec/arm/simple_idct_arm.S @@ -491,8 +491,8 @@ __end_bef_a_evaluation: bal __end_a_evaluation -__constant_ptr__: @@ see #defines at the beginning of the source code for values. .align +__constant_ptr__: @@ see #defines at the beginning of the source code for values. .word W1 .word W2 .word W3 |