Commit 48e9f683 authored by Nick Lewycky's avatar Nick Lewycky Committed by Michael Niedermayer

libswscale/x86/hscale_fast_bilinear_simd.c: Include BX in the clobber list on...

libswscale/x86/hscale_fast_bilinear_simd.c: Include BX in the clobber list on x86_64, because it isn't implicitly included when PIC is on.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ce95c14c
......@@ -275,7 +275,7 @@ void ff_hyscale_fast_mmxext(SwsContext *c, int16_t *dst,
,"m"(retsave)
#endif
: "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
#if !defined(PIC)
#if ARCH_X86_64 || !defined(PIC)
,"%"REG_b
#endif
);
......@@ -359,7 +359,7 @@ void ff_hcscale_fast_mmxext(SwsContext *c, int16_t *dst1, int16_t *dst2,
,"m"(retsave)
#endif
: "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
#if !defined(PIC)
#if ARCH_X86_64 || !defined(PIC)
,"%"REG_b
#endif
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment