diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2014-08-19 10:13:24 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2014-08-19 10:13:24 +0000 |
commit | 56e675ce8555680328c22b06690eaa2cfda77bdc (patch) | |
tree | bd8d56edd65b8269ae1b4afc024ef1d6c025988f /gcc | |
parent | 47503a4919cba2c808cbf30a19685462fd60c6a1 (diff) | |
download | gcc-56e675ce8555680328c22b06690eaa2cfda77bdc.zip gcc-56e675ce8555680328c22b06690eaa2cfda77bdc.tar.gz gcc-56e675ce8555680328c22b06690eaa2cfda77bdc.tar.bz2 |
Restore Sun as COMDAT group support
* configure.ac (gcc_cv_as_comdat_group_group): Only default to no
if unset.
* configure: Regenerate.
From-SVN: r214137
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 6 | ||||
-rw-r--r-- | gcc/configure.ac | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dafc0e5..d40886e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-08-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * configure.ac (gcc_cv_as_comdat_group_group): Only default to no + if unset. + * configure: Regenerate. + 2014-08-19 Richard Biener <rguenther@suse.de> * lto-streamer-out.c (DFS::DFS_write_tree_body): Stream diff --git a/gcc/configure b/gcc/configure index d829d4f..60aaea1 100755 --- a/gcc/configure +++ b/gcc/configure @@ -23122,9 +23122,6 @@ $as_echo "$gcc_cv_as_comdat_group_percent" >&6; } if test $gcc_cv_as_comdat_group_percent = yes; then gcc_cv_as_comdat_group_group=no else - if test -z "${gcc_cv_as_comdat_group_group+set}"; then - gcc_cv_as_comdat_group_group=no - fi case "${target}" in # Sun as uses a completely different syntax. *-*-solaris2*) @@ -23174,6 +23171,9 @@ $as_echo "$gcc_cv_as_comdat_group_group" >&6; } ;; esac + if test -z "${gcc_cv_as_comdat_group_group+set}"; then + gcc_cv_as_comdat_group_group=no + fi fi fi if test x"$ld_is_gold" = xyes; then diff --git a/gcc/configure.ac b/gcc/configure.ac index 3c15c0d..b5c05ab 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2788,9 +2788,6 @@ else if test $gcc_cv_as_comdat_group_percent = yes; then gcc_cv_as_comdat_group_group=no else - if test -z "${gcc_cv_as_comdat_group_group+set}"; then - gcc_cv_as_comdat_group_group=no - fi case "${target}" in # Sun as uses a completely different syntax. *-*-solaris2*) @@ -2817,6 +2814,9 @@ else ,, [$conftest_s]) ;; esac + if test -z "${gcc_cv_as_comdat_group_group+set}"; then + gcc_cv_as_comdat_group_group=no + fi fi fi if test x"$ld_is_gold" = xyes; then |