comparison x86/dsputil_mmx.c @ 10107:3b61bc6ce377 libavcodec

Mark "i" parameter of vector_clipf_sse() as early-clobber
author vitor
date Thu, 27 Aug 2009 15:52:44 +0000
parents 7775f6627612
children 4d1b9ca628fc
comparison
equal deleted inserted replaced
10106:a04aca5587a7 10107:3b61bc6ce377
2372 "movaps %%xmm1, 16(%1,%0) \n\t" 2372 "movaps %%xmm1, 16(%1,%0) \n\t"
2373 "movaps %%xmm2, 32(%1,%0) \n\t" 2373 "movaps %%xmm2, 32(%1,%0) \n\t"
2374 "movaps %%xmm3, 48(%1,%0) \n\t" 2374 "movaps %%xmm3, 48(%1,%0) \n\t"
2375 "sub $64, %0 \n\t" 2375 "sub $64, %0 \n\t"
2376 "jge 1b \n\t" 2376 "jge 1b \n\t"
2377 :"+r"(i) 2377 :"+&r"(i)
2378 :"r"(dst), "r"(src), "m"(min), "m"(max) 2378 :"r"(dst), "r"(src), "m"(min), "m"(max)
2379 :"memory" 2379 :"memory"
2380 ); 2380 );
2381 } 2381 }
2382 2382