re PR regression/33926 (FAIL: gcc.dg/dfp/convert-dfp-round-thread.c execution test)

2007-10-27  H.J. Lu  <hongjiu.lu@intel.com>

	PR regression/33926
	* configure.ac: Replace have_cc_tls with gcc_cv_have_cc_tls.
	* configure: Regenerated.

From-SVN: r129687
This commit is contained in:
H.J. Lu 2007-10-27 23:22:57 +00:00 committed by H.J. Lu
parent 19e8402866
commit b4e9c2c65d
3 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2007-10-27 H.J. Lu <hongjiu.lu@intel.com>
PR regression/33926
* configure.ac: Replace have_cc_tls with gcc_cv_have_cc_tls.
* configure: Regenerated.
2007-09-27 H.J. Lu <hongjiu.lu@intel.com> 2007-09-27 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in (dfp-filenames): Replace decimal_globals, * Makefile.in (dfp-filenames): Replace decimal_globals,

12
libgcc/configure vendored
View File

@ -3433,7 +3433,7 @@ fi;
echo "$as_me:$LINENO: checking whether the target asssembler upports thread-local storage" >&5 echo "$as_me:$LINENO: checking whether the target asssembler upports thread-local storage" >&5
echo $ECHO_N "checking whether the target asssembler upports thread-local storage... $ECHO_C" >&6 echo $ECHO_N "checking whether the target asssembler upports thread-local storage... $ECHO_C" >&6
if test "${have_cc_tls+set}" = set; then if test "${gcc_cv_have_cc_tls+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6 echo $ECHO_N "(cached) $ECHO_C" >&6
else else
@ -3462,20 +3462,20 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
ac_status=$? ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); }; }; then (exit $ac_status); }; }; then
have_cc_tls=yes gcc_cv_have_cc_tls=yes
else else
echo "$as_me: failed program was:" >&5 echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
have_cc_tls=no gcc_cv_have_cc_tls=no
fi fi
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
fi fi
echo "$as_me:$LINENO: result: $have_cc_tls" >&5 echo "$as_me:$LINENO: result: $gcc_cv_have_cc_tls" >&5
echo "${ECHO_T}$have_cc_tls" >&6 echo "${ECHO_T}$gcc_cv_have_cc_tls" >&6
set_have_cc_tls= set_have_cc_tls=
if test "$enable_tls $have_cc_tls" = "yes yes"; then if test "$enable_tls $gcc_cv_have_cc_tls" = "yes yes"; then
set_have_cc_tls="-DHAVE_CC_TLS" set_have_cc_tls="-DHAVE_CC_TLS"
fi fi

View File

@ -182,7 +182,7 @@ AC_SUBST(vis_hide)
# is yet to be built here. # is yet to be built here.
GCC_CHECK_CC_TLS GCC_CHECK_CC_TLS
set_have_cc_tls= set_have_cc_tls=
if test "$enable_tls $have_cc_tls" = "yes yes"; then if test "$enable_tls $gcc_cv_have_cc_tls" = "yes yes"; then
set_have_cc_tls="-DHAVE_CC_TLS" set_have_cc_tls="-DHAVE_CC_TLS"
fi fi
AC_SUBST(set_have_cc_tls) AC_SUBST(set_have_cc_tls)