diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-02-03 13:03:48 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-04 00:18:29 +0100 |
commit | e93d3a22cb53bd88f551c1ad05cf3db3d453a396 (patch) | |
tree | 8e049b26afdeb73ac01e8d04423ea76c872c7304 | |
parent | d304cb49eb09f6934262e87c97e1ae49f4d70e5c (diff) | |
download | ffmpeg-e93d3a22cb53bd88f551c1ad05cf3db3d453a396.tar.gz |
x86: lavu/x264asm: fix ymm register instantiation
This mimicks what is done for the other instruction sets.
Tested-by: James Almer <jamrial@gmail.com>
Tested-by: Mickaƫl Raulet <mraulet@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 fa6a6ab42a..33b22cd45d 100644 --- a/libavutil/x86/x86inc.asm +++ b/libavutil/x86/x86inc.asm @@ -871,7 +871,7 @@ SECTION .note.GNU-stack noalloc noexec nowrite progbits %assign %%i 0 %rep num_mmregs CAT_XDEFINE m, %%i, ymm %+ %%i - CAT_XDEFINE nymm, %%i, %%i + CAT_XDEFINE nnymm, %%i, %%i %assign %%i %%i+1 %endrep INIT_CPUFLAGS %1 |