diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-12-05 16:53:21 +0000 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-12-06 14:11:15 +0100 |
commit | ecc8b02194463476112972e7be655e8541ef253e (patch) | |
tree | 7801cf19392199626155bd55cc8373729ec02367 /libavutil/x86/float_dsp.asm | |
parent | 5945c7b35d9169caf9ecef1c419eebdebb909e60 (diff) | |
download | ffmpeg-ecc8b02194463476112972e7be655e8541ef253e.tar.gz |
x86: float_dsp: fix compilation of ff_vector_dmul_scalar_avx() on x86-32
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavutil/x86/float_dsp.asm')
-rw-r--r-- | libavutil/x86/float_dsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index d8fd93a625..4a1742f63a 100644 --- a/libavutil/x86/float_dsp.asm +++ b/libavutil/x86/float_dsp.asm @@ -127,7 +127,7 @@ cglobal vector_dmul_scalar, 3,3,3, dst, src, len cglobal vector_dmul_scalar, 4,4,3, dst, src, mul, len %endif %if ARCH_X86_32 - VBROADCASTSD xmm0, mulm + VBROADCASTSD m0, mulm %else %if WIN64 movlhps xmm2, xmm2 |