Commit 56e5e76f authored by diego's avatar diego

Fix MMX2 check, 'movss' is not an MMX2 instruction, use 'pmaxub' instead.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17922 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ba717b3
......@@ -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"'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment