diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-10 21:39:58 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-10 21:39:58 +0000 |
commit | 18c31f6ff8eef83cd19ea9e431335a854156dd18 (patch) | |
tree | 98bf382d297766ef2163260e1f504c6f40ea528b /libavcodec/arm | |
parent | d9427e848e5938f926eb785937629dd99a59aa11 (diff) | |
download | ffmpeg-18c31f6ff8eef83cd19ea9e431335a854156dd18.tar.gz |
Only use .size in ARM assembly when targeting ELF
This fixes compilation on mingw32ce
Originally committed as revision 22437 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/asm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/asm.S b/libavcodec/arm/asm.S index 96b5864e80..17139b4aae 100644 --- a/libavcodec/arm/asm.S +++ b/libavcodec/arm/asm.S @@ -36,7 +36,7 @@ ELF .eabi_attribute 25, \val .macro function name, export=0 .macro endfunc - .size \name, . - \name +ELF .size \name, . - \name .endfunc .purgem endfunc .endm |