Browse Source

lls/x86: use 3-operator vaddpd in ADDPD_MEM

Fixes build with yasm-1.1

Signed-off-by: Anton Khirnov <anton@khirnov.net>
tags/n2.0
Loren Merritt Anton Khirnov 12 years ago
parent
commit
c8b920a9b7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/x86/lls.asm

+ 1
- 1
libavutil/x86/lls.asm View File

@@ -38,7 +38,7 @@ endstruc

%macro ADDPD_MEM 2
%if cpuflag(avx)
vaddpd %2, %1
vaddpd %2, %2, %1
%else
addpd %2, %1
%endif


Loading…
Cancel
Save