mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-07 23:32:33 +00:00
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
This commit is contained in:
parent
a7cc783d71
commit
ee46753739
@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user