Browse Source

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: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Nick Lewycky Michael Niedermayer 10 years ago
parent
commit
48e9f68384
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/x86/hscale_fast_bilinear_simd.c

+ 2
- 2
libswscale/x86/hscale_fast_bilinear_simd.c View File

@@ -275,7 +275,7 @@ void ff_hyscale_fast_mmxext(SwsContext *c, int16_t *dst,
,"m"(retsave) ,"m"(retsave)
#endif #endif
: "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
#if !defined(PIC)
#if ARCH_X86_64 || !defined(PIC)
,"%"REG_b ,"%"REG_b
#endif #endif
); );
@@ -359,7 +359,7 @@ void ff_hcscale_fast_mmxext(SwsContext *c, int16_t *dst1, int16_t *dst2,
,"m"(retsave) ,"m"(retsave)
#endif #endif
: "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
#if !defined(PIC)
#if ARCH_X86_64 || !defined(PIC)
,"%"REG_b ,"%"REG_b
#endif #endif
); );


Loading…
Cancel
Save