diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-02-01 13:27:30 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-02-03 11:37:53 +0100 |
commit | 7abdd026df6a9a52d07d8174505b33cc89db7bf6 (patch) | |
tree | f2d0a0a5076ad7757f1e9ef95e24caf339372950 /libavutil | |
parent | 740b0bf03b4bb8b0a0e964750817ac0363a33c55 (diff) | |
download | ffmpeg-7abdd026df6a9a52d07d8174505b33cc89db7bf6.tar.gz |
asm: Consistently uppercase SECTION markers
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/x86/x86inc.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm index 7941af304a..e04dbfedf3 100644 --- a/libavutil/x86/x86inc.asm +++ b/libavutil/x86/x86inc.asm @@ -87,7 +87,7 @@ ; keep supporting OS/2. %macro SECTION_RODATA 0-1 16 %ifidn __OUTPUT_FORMAT__,aout - section .text + SECTION .text %else SECTION .rodata align=%1 %endif |