summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoren Merritt <lorenm@u.washington.edu>2008-08-14 04:39:59 +0000
committerLoren Merritt <lorenm@u.washington.edu>2008-08-14 04:39:59 +0000
commitee4675373988bccc96a39f48ffad200926778ad2 (patch)
tree1c3ce6d13a9c8c29c800a74dffe4b96014ce6d4a
parenta7cc783d711f0f47eb748a33b55d0c4f57ac1840 (diff)
gcc chokes on xmm constraints, so pessimize int32_to_float_fmul_scalar_sse a little
Originally committed as revision 14748 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/i386/dsputil_mmx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c
index 4a5b3b8d54..58d6f09f7a 100644
--- a/libavcodec/i386/dsputil_mmx.c
+++ b/libavcodec/i386/dsputil_mmx.c
@@ -2212,7 +2212,7 @@ static void int32_to_float_fmul_scalar_sse(float *dst, const int *src, float mul
"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_sse2(float *dst, const int *src, float mu
"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)
);
}