]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
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>
Fri, 3 Jul 2015 17:50:48 +0000 (17:50 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Fri, 3 Jul 2015 17:50:48 +0000 (17:50 +0000)
2015-07-03  Jack Howarth  <howarth.at.gcc@gmail.com>

PR target/66509
* configure.ac: Fix filds and fildq test for 64-bit.
* configure: Regenerated.

From-SVN: r225400

gcc/ChangeLog
gcc/configure
gcc/configure.ac

index bc1b8fa6f9b15339ff677f946504267156f691f2..686af1fe905f62d148cc6115dc7e20ac32f478f8 100644 (file)
@@ -1,3 +1,9 @@
+2015-07-03  Jack Howarth  <howarth.at.gcc@gmail.com>
+
+       PR target/66509
+       * configure.ac: Fix filds and fildq test for 64-bit.
+       * configure: Regenerated.
+
 2015-07-01  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        Backport from mainline
index ab5b2ec3b08f7ee1d97fa0369e263bfe8e0f0ef0..df63aa5695492222a80dd352a5fcf61b38e1525f 100755 (executable)
@@ -24810,7 +24810,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
@@ -24841,7 +24841,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 7bf1250a6c16525f75436f8faf2732aab8b784e9..8488c2d5ab2e6cbbd905e7570b0f4791f13451b3 100644 (file)
@@ -3858,13 +3858,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.])])