diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-30 16:55:32 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-30 16:55:32 +0000 |
commit | 5baaf9adafe839c4ae9e7947c4d6c19329e469a7 (patch) | |
tree | aba13b44222ec5f03911acdd14ccf9927e6fb927 | |
parent | 391dbb54a640f6943bb879e8d301114caab83210 (diff) | |
download | ffmpeg-5baaf9adafe839c4ae9e7947c4d6c19329e469a7.tar.gz |
Use a "b" constraint instead of ebx clobber to detect if EBX is available.
The test using clobber incorrectly indicates ebx to be available with the
default compilers on OpenBSD 4.5 and Haiku.
Originally committed as revision 20101 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2162,7 +2162,7 @@ elif enabled x86; then EOF # check whether EBX is available on x86 - check_asm ebx_available '"":::"%ebx"' + check_asm ebx_available '""::"b"(0)' # check whether more than 10 operands are supported check_cc <<EOF && enable ten_operands |