re PR target/66509 (the new clang-based assembler in Xcode 7 on 10.11 fails on the...
authorJack Howarth <howarth.at.gcc@gmail.com>
Tue, 30 Jun 2015 02:10:43 +0000 (02:10 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Tue, 30 Jun 2015 02:10:43 +0000 (02:10 +0000)
PR target/66509
* configure.ac: Fix filds and fildq test for 64-bit.
* configure: Regenerated.

From-SVN: r225158

gcc/ChangeLog
gcc/configure
gcc/configure.ac

index fc4a4424645ca1ef344d5eab8e82cf25efae9983..2625e4b793827b39e0caab0f1ad4962a55ab1071 100644 (file)
@@ -1,3 +1,9 @@
+2015-06-29  Jack Howarth  <howarth.at.gcc@gmail.com>
+
+       PR target/66509
+       * configure.ac: Fix filds and fildq test for 64-bit.
+       * configure: Regenerated.
+
 2015-06-29  Nathan Sidwell  <nathan@codesourcery.com>
 
        * config/nvptx/nvptx.md (nvptx_reorg_subreg): New fn, broken out of ...
index 3f3f5785d577682591ba04320d4119cd7ae74ec3..0d5c71a639b2c18887689a87ab745d1f0ffc5a27 100755 (executable)
@@ -25048,7 +25048,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
@@ -25079,7 +25079,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
index 85f72d50dbfed0c342800f672b4210dd66bc9fe4..88aecdbf3e1c26dc305e77c6550151675d0dee3b 100644 (file)
@@ -3885,13 +3885,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.])])