Commit 0c005fa8 authored by James Almer's avatar James Almer

Merge commit '7abdd026'

* commit '7abdd026':
  asm: Consistently uppercase SECTION markers
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 62f1c9f1 7abdd026
......@@ -29,7 +29,7 @@ cextern pw_2
cextern pw_8
cextern pw_16
section .text
SECTION .text
; %1 -= (%2 + %3 + 2)>>2 %4 is pw_2
%macro COMPOSE_53iL0 4
......
......@@ -30,7 +30,7 @@ cextern pw_16
cextern pw_32
cextern pb_80
section .text
SECTION .text
%macro UNPACK_ADD 6
mov%5 %1, %3
......
......@@ -22,7 +22,7 @@
%include "libavutil/x86/x86util.asm"
section .text
SECTION .text
; void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels,
; ptrdiff_t line_size)
......
......@@ -25,7 +25,7 @@
%include "libavutil/x86/x86util.asm"
section .text
SECTION .text
; void ff_diff_int16(uint8_t *dst, const uint8_t *src1, const uint8_t *src2,
; unsigned mask, int w);
......
......@@ -25,7 +25,7 @@
%include "libavutil/x86/x86util.asm"
section .text
SECTION .text
; void ff_diff_bytes(uint8_t *dst, const uint8_t *src1, const uint8_t *src2,
; intptr_t w);
......
......@@ -24,7 +24,7 @@
cextern pw_4
cextern pw_5
section .text
SECTION .text
; dst_low, dst_high (src), zero
; zero-extends one vector from 8 to 16 bits
......
......@@ -24,7 +24,7 @@
cextern pw_9
cextern pw_128
section .text
SECTION .text
%if HAVE_MMX_INLINE
......
......@@ -87,9 +87,9 @@
; keep supporting OS/2.
%macro SECTION_RODATA 0-1 16
%ifidn __OUTPUT_FORMAT__,aout
section .text
SECTION .text
%elifidn __OUTPUT_FORMAT__,coff
section .text
SECTION .text
%else
SECTION .rodata align=%1
%endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment