lls/x86: use 3-operator vaddpd in ADDPD_MEM

Fixes build with yasm-1.1

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Loren Merritt 2013-07-02 07:56:56 +02:00 committed by Anton Khirnov
parent 8bd9039900
commit c8b920a9b7

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