From 57fdc74c34f8f60e794d5ac2817a683074c3c7dd Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 19 Mar 2014 02:08:58 +0100 Subject: [PATCH] Add one forgotten named inline asm operand in libavcodec/x86/motion_est.c. --- libavcodec/x86/motion_est.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/x86/motion_est.c b/libavcodec/x86/motion_est.c index 3df471ed78..90b83468a8 100644 --- a/libavcodec/x86/motion_est.c +++ b/libavcodec/x86/motion_est.c @@ -286,7 +286,8 @@ static inline void sad8_4_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h) " js 1b \n\t" : "+a" (len) : "r" (blk1 - len), "r" (blk1 - len + stride), "r" (blk2 - len), - "r" ((x86_reg) stride)); + "r" ((x86_reg) stride) + NAMED_CONSTRAINTS_ADD(round_tab)); } static inline int sum_mmx(void)