mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-25 23:14:41 +08:00
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:
parent
19e8402866
commit
b4e9c2c65d
@ -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>
|
||||
|
||||
* Makefile.in (dfp-filenames): Replace decimal_globals,
|
||||
|
12
libgcc/configure
vendored
12
libgcc/configure
vendored
@ -3433,7 +3433,7 @@ fi;
|
||||
|
||||
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
|
||||
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
|
||||
else
|
||||
|
||||
@ -3462,20 +3462,20 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
have_cc_tls=yes
|
||||
gcc_cv_have_cc_tls=yes
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
|
||||
have_cc_tls=no
|
||||
gcc_cv_have_cc_tls=no
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||
|
||||
fi
|
||||
echo "$as_me:$LINENO: result: $have_cc_tls" >&5
|
||||
echo "${ECHO_T}$have_cc_tls" >&6
|
||||
echo "$as_me:$LINENO: result: $gcc_cv_have_cc_tls" >&5
|
||||
echo "${ECHO_T}$gcc_cv_have_cc_tls" >&6
|
||||
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"
|
||||
fi
|
||||
|
||||
|
@ -182,7 +182,7 @@ AC_SUBST(vis_hide)
|
||||
# is yet to be built here.
|
||||
GCC_CHECK_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"
|
||||
fi
|
||||
AC_SUBST(set_have_cc_tls)
|
||||
|
Loading…
Reference in New Issue
Block a user