comparison libmpcodecs/vf_divtc.c @ 28905:b538600d545c

Add missing ecx clobber in diff_MMX code (yes, that function is duplicated).
author reimar
date Fri, 13 Mar 2009 17:02:15 +0000
parents 25337a2147e7
children 6cc8cc259dc1
comparison
equal deleted inserted replaced
28904:69590d5c32cf 28905:b538600d545c
67 "jnz 1b \n\t" 67 "jnz 1b \n\t"
68 "movq %%mm4, (%%"REG_d") \n\t" 68 "movq %%mm4, (%%"REG_d") \n\t"
69 "emms \n\t" 69 "emms \n\t"
70 : 70 :
71 : "S" (old), "D" (new), "a" ((long)os), "b" ((long)ns), "d" (out) 71 : "S" (old), "D" (new), "a" ((long)os), "b" ((long)ns), "d" (out)
72 : "memory" 72 : "%ecx", "memory"
73 ); 73 );
74 return out[0]+out[1]+out[2]+out[3]; 74 return out[0]+out[1]+out[2]+out[3];
75 } 75 }
76 #endif 76 #endif
77 77