[FFmpeg-cvslog] r14748 - trunk/libavcodec/i386/dsputil_mmx.c

lorenm subversion
Thu Aug 14 06:39:59 CEST 2008


Author: lorenm
Date: Thu Aug 14 06:39:59 2008
New Revision: 14748

Log:
gcc chokes on xmm constraints, so pessimize int32_to_float_fmul_scalar_sse a little


Modified:
   trunk/libavcodec/i386/dsputil_mmx.c

Modified: trunk/libavcodec/i386/dsputil_mmx.c
==============================================================================
--- trunk/libavcodec/i386/dsputil_mmx.c	(original)
+++ trunk/libavcodec/i386/dsputil_mmx.c	Thu Aug 14 06:39:59 2008
@@ -2212,7 +2212,7 @@ static void int32_to_float_fmul_scalar_s
         "add $32, %0 \n"
         "jl 1b \n"
         :"+r"(i)
-        :"r"(dst+len), "r"(src+len), "xm"(mul)
+        :"r"(dst+len), "r"(src+len), "m"(mul)
     );
 }
 
@@ -2232,7 +2232,7 @@ static void int32_to_float_fmul_scalar_s
         "add $32, %0 \n"
         "jl 1b \n"
         :"+r"(i)
-        :"r"(dst+len), "r"(src+len), "xm"(mul)
+        :"r"(dst+len), "r"(src+len), "m"(mul)
     );
 }
 




More information about the ffmpeg-cvslog mailing list