diff options
author | Lynne <dev@lynne.ee> | 2021-04-24 22:33:42 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-04-24 22:33:42 +0200 |
commit | bb40f800bd4cc1991cde1b3252a75fa7e6da08f8 (patch) | |
tree | f4fba2bb02996e703881a45466865b0990acf33d /libavutil/x86 | |
parent | e2cf0a1f68724e9add5b40dd2589a859e0b55721 (diff) | |
download | ffmpeg-bb40f800bd4cc1991cde1b3252a75fa7e6da08f8.tar.gz |
x86/tx_float: fix forgotten 2-argument mulps
Yasm *really* cannot deal with any omitted arguments at all.
Diffstat (limited to 'libavutil/x86')
-rw-r--r-- | libavutil/x86/tx_float.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/tx_float.asm b/libavutil/x86/tx_float.asm index 470624b79d..0eb2bf20d6 100644 --- a/libavutil/x86/tx_float.asm +++ b/libavutil/x86/tx_float.asm @@ -214,7 +214,7 @@ SECTION .text addsubps %3, %3, %2 ; z1234, z5678 addsubps %1, %1, %4 ; s3142, s7586 - mulps %3, [s8_mult_odd] ; z * s8_mult_odd + mulps %3, %3, [s8_mult_odd] ; z * s8_mult_odd vpermilps %1, %1, [s8_perm_even] ; s1234, s5687 ! shufps %2, %3, %3, q2332 ; junk, z7887 |