summaryrefslogtreecommitdiff
path: root/libavutil/arm
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2014-01-07 12:13:11 +0200
committerMartin Storsjö <martin@martin.st>2014-01-07 19:29:56 +0200
commit5dae4872357613a0b51120b54a4c5221e0ec3f69 (patch)
treeb8c2f1ff1362289dd8ee16722f25b9195beb6db3 /libavutil/arm
parentb7b932f5e3602bd34c3cc634b71c8bbbc0fb8dc0 (diff)
arm: Allow overriding the alignment set in the function macro
The function macro always sets .align 2 before declaring the function label (since 5c5e1ea3) and always sets the section to .text (since 278caa6a). The .align 5 before certain functions, added in fc252eba, were added before .text and .align were added to the function macro and thus became useless/unused when the function macro got them. This restores the original intention, to align the loop entry points. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/arm')
-rw-r--r--libavutil/arm/asm.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/arm/asm.S b/libavutil/arm/asm.S
index 463820015d..57efe977ed 100644
--- a/libavutil/arm/asm.S
+++ b/libavutil/arm/asm.S
@@ -54,7 +54,7 @@
T .thumb
ELF .eabi_attribute 25, 1 @ Tag_ABI_align_preserved
-.macro function name, export=0
+.macro function name, export=0, align=2
.set .Lpic_idx, 0
.set .Lpic_gp, 0
.macro endfunc
@@ -69,7 +69,7 @@ ELF .size \name, . - \name
.purgem endfunc
.endm
.text
- .align 2
+ .align \align
.if \export
.global EXTERN_ASM\name
EXTERN_ASM\name: