summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-09 23:33:27 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-09 23:33:27 +0000
commit5fd89ca03f9a22eec271d6eb3b44ffa7255f8121 (patch)
tree90b4e1bb8f2282c6b672541fa0f3b6c533c20d18 /configure
parentf49568a467ef50ed8cd1f2fde80bdf37ecadb84b (diff)
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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9f0bb7dd8b..22b7064718 100755
--- a/configure
+++ b/configure
@@ -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"'