From d5ee3580d84a238719588daf0b74feefd07d5742 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 19 Jul 2014 05:47:48 +0200 Subject: [PATCH] sws: move inline asm hscale to MMX_OBJS Found-by: jamrial Signed-off-by: Michael Niedermayer --- libswscale/x86/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libswscale/x86/Makefile b/libswscale/x86/Makefile index c6f56d0932..69012077bb 100644 --- a/libswscale/x86/Makefile +++ b/libswscale/x86/Makefile @@ -1,10 +1,11 @@ $(SUBDIR)x86/swscale_mmx.o: CFLAGS += $(NOREDZONE_FLAGS) -OBJS += x86/hscale_fast_bilinear_simd.o \ - x86/rgb2rgb.o \ +OBJS += x86/rgb2rgb.o \ x86/swscale.o \ x86/yuv2rgb.o \ +MMX-OBJS += x86/hscale_fast_bilinear_simd.o \ + OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o YASM-OBJS += x86/input.o \