Commit 005f915e by Jack Howarth Committed by Mike Stump

re PR target/66509 (the new clang-based assembler in Xcode 7 on 10.11 fails on…

re PR target/66509 (the new clang-based assembler in Xcode 7 on 10.11 fails on the libjava/java/lang/reflect/natArray.cc file from FSF gcc 5.1 at -m32)

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

From-SVN: r225158
parent b54a2189
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> 2015-06-29 Nathan Sidwell <nathan@codesourcery.com>
* config/nvptx/nvptx.md (nvptx_reorg_subreg): New fn, broken out of ... * config/nvptx/nvptx.md (nvptx_reorg_subreg): New fn, broken out of ...
......
...@@ -25048,7 +25048,7 @@ if test "${gcc_cv_as_ix86_filds+set}" = set; then : ...@@ -25048,7 +25048,7 @@ if test "${gcc_cv_as_ix86_filds+set}" = set; then :
else else
gcc_cv_as_ix86_filds=no gcc_cv_as_ix86_filds=no
if test x$gcc_cv_as != x; then 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' 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 echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
(eval $ac_try) 2>&5 (eval $ac_try) 2>&5
...@@ -25079,7 +25079,7 @@ if test "${gcc_cv_as_ix86_fildq+set}" = set; then : ...@@ -25079,7 +25079,7 @@ if test "${gcc_cv_as_ix86_fildq+set}" = set; then :
else else
gcc_cv_as_ix86_fildq=no gcc_cv_as_ix86_fildq=no
if test x$gcc_cv_as != x; then 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' 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 echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
(eval $ac_try) 2>&5 (eval $ac_try) 2>&5
......
...@@ -3885,13 +3885,13 @@ foo: nop ...@@ -3885,13 +3885,13 @@ foo: nop
gcc_GAS_CHECK_FEATURE([filds and fists mnemonics], gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
gcc_cv_as_ix86_filds,,, gcc_cv_as_ix86_filds,,,
[filds mem; fists mem],, [filds (%ebp); fists (%ebp)],,
[AC_DEFINE(HAVE_AS_IX86_FILDS, 1, [AC_DEFINE(HAVE_AS_IX86_FILDS, 1,
[Define if your assembler uses filds and fists mnemonics.])]) [Define if your assembler uses filds and fists mnemonics.])])
gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics], gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics],
gcc_cv_as_ix86_fildq,,, gcc_cv_as_ix86_fildq,,,
[fildq mem; fistpq mem],, [fildq (%ebp); fistpq (%ebp)],,
[AC_DEFINE(HAVE_AS_IX86_FILDQ, 1, [AC_DEFINE(HAVE_AS_IX86_FILDQ, 1,
[Define if your assembler uses fildq and fistq mnemonics.])]) [Define if your assembler uses fildq and fistq mnemonics.])])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment