diff options
author | Henrik Gramner <henrik@gramner.com> | 2015-05-27 21:38:14 +0200 |
---|---|---|
committer | Henrik Gramner <henrik@gramner.com> | 2015-08-04 20:13:09 +0200 |
commit | f0b7882ceb791ff32267ad97bd21a09e9cbf83d5 (patch) | |
tree | 2b87810dcdc75245000e7fa7c5f5359cda63b2ac /libavcodec/x86/fmtconvert.asm | |
parent | 826790f59640a84813e8dd81c2bba559516f8e4d (diff) | |
download | ffmpeg-f0b7882ceb791ff32267ad97bd21a09e9cbf83d5.tar.gz |
x86inc: Drop SECTION_TEXT macro
The .text section is already 16-byte aligned by default on all supported
platforms so `SECTION_TEXT` isn't any different from `SECTION .text`.
Diffstat (limited to 'libavcodec/x86/fmtconvert.asm')
-rw-r--r-- | libavcodec/x86/fmtconvert.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index f4fc0c20ef..20d8315fd9 100644 --- a/libavcodec/x86/fmtconvert.asm +++ b/libavcodec/x86/fmtconvert.asm @@ -21,7 +21,7 @@ %include "libavutil/x86/x86util.asm" -SECTION_TEXT +SECTION .text ;------------------------------------------------------------------------------ ; void ff_int32_to_float_fmul_scalar(float *dst, const int32_t *src, float mul, |