diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-07 20:09:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-07 20:09:41 +0000 |
commit | 278caa6ad301d2c3e8dc9bbc06ad83c020942318 (patch) | |
tree | 89f345ffdd375a5ce83f7ffc7bda0b45ae7ead78 /libavcodec/arm | |
parent | 108ac7f29091abe0a746d3ab25d5e1e70a8111cc (diff) | |
download | ffmpeg-278caa6ad301d2c3e8dc9bbc06ad83c020942318.tar.gz |
ARM: set section to .text in 'function' macro
This ensures code always goes into the .text section and avoids the
need to specify it explicitly after changing sections.
Originally committed as revision 24095 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/asm.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/arm/asm.S b/libavcodec/arm/asm.S index 724e7a00ea..f364a24f9b 100644 --- a/libavcodec/arm/asm.S +++ b/libavcodec/arm/asm.S @@ -40,6 +40,7 @@ ELF .size \name, . - \name .endfunc .purgem endfunc .endm + .text .if \export .global EXTERN_ASM\name EXTERN_ASM\name: |