From 8c2e2040aaed7326a583b44d813231e4432ad39c Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Tue, 3 Apr 2007 11:21:16 +0000 Subject: [PATCH] Add first and second output to earlyclobbers in COPY3_IF_LT macro. patch by Ramiro Ribeiro Polla, ramiro lisha.ufsc br Original thread: date: Mar 27, 2007 11:21 PM subject: [Ffmpeg-devel] [PATCH] fix build for --cpu=i686 Originally committed as revision 8604 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/internal.h b/libavutil/internal.h index eefbfa1e4a..fb7d07ca80 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -230,7 +230,7 @@ asm volatile (\ "cmovl %3, %0 \n\t"\ "cmovl %4, %1 \n\t"\ "cmovl %5, %2 \n\t"\ - : "+r" (x), "+r" (a), "+r" (c)\ + : "+&r" (x), "+&r" (a), "+r" (c)\ : "r" (y), "r" (b), "r" (d)\ ); #else