mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 10:22:10 +00:00
x86/tx_float: fix forgotten 2-argument mulps
Yasm *really* cannot deal with any omitted arguments at all.
This commit is contained in:
parent
e2cf0a1f68
commit
bb40f800bd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user