diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-09 23:33:27 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-09 23:33:27 +0000 |
commit | 5fd89ca03f9a22eec271d6eb3b44ffa7255f8121 (patch) | |
tree | 90b4e1bb8f2282c6b672541fa0f3b6c533c20d18 /configure | |
parent | f49568a467ef50ed8cd1f2fde80bdf37ecadb84b (diff) | |
download | ffmpeg-5fd89ca03f9a22eec271d6eb3b44ffa7255f8121.tar.gz |
Fix MMX2 check, 'movss' is not an MMX2 instruction, use 'pmaxub' instead.
Originally committed as revision 17922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1856,7 +1856,7 @@ EOF # check whether binutils is new enough to compile SSSE3/MMX2 enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"' - enabled mmx2 && check_asm mmx2 '"movss %xmm0, %xmm0"' + enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"' check_asm bswap '"bswap %%eax" ::: "%eax"' |