diff options
author | Henrik Gramner <henrik@gramner.com> | 2015-08-01 17:27:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-08-11 11:12:01 +0200 |
commit | ab43beefab9147673e09679e04be08431684a5db (patch) | |
tree | 0eae121944d96431e43ecc9d184f668cad9e043c /libavcodec/x86/fmtconvert.asm | |
parent | 1c6bb813284732d9a1acacfe99522d9f66ebf73e (diff) | |
download | ffmpeg-ab43beefab9147673e09679e04be08431684a5db.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`.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 e82f14923a..727daa9774 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, |