From 326bf69accced8e86822904b31258d25025f8cdc Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Wed, 6 Oct 2010 01:27:02 +0000 Subject: [PATCH] fft: mark xmm registers as clobbered in ff_imdct_calc_sse Originally committed as revision 25363 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/x86/fft_sse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/x86/fft_sse.c b/libavcodec/x86/fft_sse.c index 0908671537..9f02816def 100644 --- a/libavcodec/x86/fft_sse.c +++ b/libavcodec/x86/fft_sse.c @@ -97,6 +97,7 @@ void ff_imdct_calc_sse(FFTContext *s, FFTSample *output, const FFTSample *input) :"+r"(j), "+r"(k) :"r"(output+n4), "r"(output+n4*3), "m"(*m1m1m1m1) + XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm7") ); }