diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-02 16:00:48 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-02 19:47:56 +0100 |
commit | 5e826fd65e6e8385a196aa0fdb01f60cfb0b55b6 (patch) | |
tree | f5b211b68d728508a008f0ca12ad41dcf2fa32e9 /libavutil/arm/asm.S | |
parent | 7bda4ed780c23c4bd50cf9ccd91f235e67ab0eae (diff) | |
download | ffmpeg-5e826fd65e6e8385a196aa0fdb01f60cfb0b55b6.tar.gz |
ARM: set Tag_ABI_align_preserved in all asm files
All our ARM asm preserves alignment so setting this attribute
in a common location is simpler. This removes numerous warnings
when linking with armcc.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil/arm/asm.S')
-rw-r--r-- | libavutil/arm/asm.S | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavutil/arm/asm.S b/libavutil/arm/asm.S index 50305f778b..67d42e6ce6 100644 --- a/libavutil/arm/asm.S +++ b/libavutil/arm/asm.S @@ -52,14 +52,7 @@ .syntax unified T .thumb - -.macro require8 val=1 -ELF .eabi_attribute 24, \val -.endm - -.macro preserve8 val=1 -ELF .eabi_attribute 25, \val -.endm +ELF .eabi_attribute Tag_ABI_align_preserved, 1 .macro function name, export=0 .set .Lpic_idx, 0 |