43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
diff --git a/gcc/configure b/gcc/configure
|
|
index 9523773..52b0bf7 100755
|
|
--- a/gcc/configure
|
|
+++ b/gcc/configure
|
|
@@ -24884,7 +24884,7 @@ if test "${gcc_cv_as_ix86_filds+set}" = set; then :
|
|
else
|
|
gcc_cv_as_ix86_filds=no
|
|
if test x$gcc_cv_as != x; then
|
|
- $as_echo 'filds mem; fists mem' > conftest.s
|
|
+ $as_echo 'filds (%ebp); fists (%ebp)' > conftest.s
|
|
if { ac_try='$gcc_cv_as $gcc_cv_as_flags -o conftest.o conftest.s >&5'
|
|
{ { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
|
|
(eval $ac_try) 2>&5
|
|
@@ -24915,7 +24915,7 @@ if test "${gcc_cv_as_ix86_fildq+set}" = set; then :
|
|
else
|
|
gcc_cv_as_ix86_fildq=no
|
|
if test x$gcc_cv_as != x; then
|
|
- $as_echo 'fildq mem; fistpq mem' > conftest.s
|
|
+ $as_echo 'fildq (%ebp); fistpq (%ebp)' > conftest.s
|
|
if { ac_try='$gcc_cv_as $gcc_cv_as_flags -o conftest.o conftest.s >&5'
|
|
{ { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
|
|
(eval $ac_try) 2>&5
|
|
diff --git a/gcc/configure.ac b/gcc/configure.ac
|
|
index 68b0ee8..bd53978 100644
|
|
--- a/gcc/configure.ac
|
|
+++ b/gcc/configure.ac
|
|
@@ -3869,13 +3869,13 @@ foo: nop
|
|
|
|
gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
|
|
gcc_cv_as_ix86_filds,,,
|
|
- [filds mem; fists mem],,
|
|
+ [filds (%ebp); fists (%ebp)],,
|
|
[AC_DEFINE(HAVE_AS_IX86_FILDS, 1,
|
|
[Define if your assembler uses filds and fists mnemonics.])])
|
|
|
|
gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics],
|
|
gcc_cv_as_ix86_fildq,,,
|
|
- [fildq mem; fistpq mem],,
|
|
+ [fildq (%ebp); fistpq (%ebp)],,
|
|
[AC_DEFINE(HAVE_AS_IX86_FILDQ, 1,
|
|
[Define if your assembler uses fildq and fistq mnemonics.])])
|
|
|