diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-06 01:26:13 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-06 01:26:13 +0000 |
commit | 6f74fb03cde1266feea8882d5b672e827ad8f55b (patch) | |
tree | cb0832cae1c522fffe080d15174c38d2afa489da /configure | |
parent | dd68d4db430089bff70f62a38cb84e07d183a435 (diff) | |
download | ffmpeg-6f74fb03cde1266feea8882d5b672e827ad8f55b.tar.gz |
Check whether compiler supports xmm registers in asm clobber list
Originally committed as revision 25362 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1074,6 +1074,7 @@ HAVE_LIST=" VirtualAlloc winsock2_h xform_asm + xmm_clobbers yasm " @@ -2585,6 +2586,9 @@ EOF check_asm ebx_available '""::"b"(0)' && check_asm ebx_available '"":::"%ebx"' + # check whether xmm clobbers are supported + check_asm xmm_clobbers '"":::"%xmm0"' + # check whether more than 10 operands are supported check_cc <<EOF && enable ten_operands int main(void) { |