diff options
author | James Almer <jamrial@gmail.com> | 2016-06-08 19:37:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-06-08 19:37:08 -0300 |
commit | 172af208520108c9b20bf1cdd62d8775cff7cd2b (patch) | |
tree | 9bbb8dbadd2efcd4ee2d0aca8c638d80622fe35a /libavutil | |
parent | 7d7fdd6532b4f08f1c1f76e809b807a334a98a32 (diff) | |
download | ffmpeg-172af208520108c9b20bf1cdd62d8775cff7cd2b.tar.gz |
x86/showcqt: use three operand format for some instructions
Fixes failures with yasm 1.1.0 and older
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/x86/x86util.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index 50b7b50535..e7493f4883 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -359,7 +359,7 @@ %macro HADDPS 3 ; dst, src, tmp %if cpuflag(sse3) - haddps %1, %2 + haddps %1, %1, %2 %else movaps %3, %1 shufps %1, %2, q2020 |