From 278caa6ad301d2c3e8dc9bbc06ad83c020942318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Wed, 7 Jul 2010 20:09:41 +0000 Subject: 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 --- libavcodec/arm/asm.S | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/arm/asm.S b/libavcodec/arm/asm.S index 724e7a0..f364a24 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: -- cgit v1.1