Module: libav Branch: master Commit: c8b920a9b7fa534a6141695ace4e8c2dfcd56cee
Author: Loren Merritt <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Tue Jul 2 07:56:56 2013 +0200 lls/x86: use 3-operator vaddpd in ADDPD_MEM Fixes build with yasm-1.1 Signed-off-by: Anton Khirnov <[email protected]> --- libavutil/x86/lls.asm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavutil/x86/lls.asm b/libavutil/x86/lls.asm index 058a7dc..eab85ed 100644 --- a/libavutil/x86/lls.asm +++ b/libavutil/x86/lls.asm @@ -38,7 +38,7 @@ endstruc %macro ADDPD_MEM 2 %if cpuflag(avx) - vaddpd %2, %1 + vaddpd %2, %2, %1 %else addpd %2, %1 %endif _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
