diff options
author | Nick Clifton <nickc@redhat.com> | 2008-09-04 09:43:08 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2008-09-04 09:43:08 +0000 |
commit | 28e6bb130e41cc18e1d07330a154862a4927af65 (patch) | |
tree | af697c0f2cee31ce7d1e63bab8f60062dcbbca0f /gcc/config.in | |
parent | 48253184e5e4098efdb26cc7f195c46c5ba0f1f7 (diff) | |
download | gcc-28e6bb130e41cc18e1d07330a154862a4927af65.tar.gz |
configure.ac (HAVE_GAS_LCOMM_WITH_ALIGNMENT): New assembler check.
* configure.ac (HAVE_GAS_LCOMM_WITH_ALIGNMENT): New assembler
check.
* configure: Regenerate.
* config.in: Regenerate.
* config/i386/bsd.h (ASM_OUTPUT_ALIGNED_LOCAL): Use .lcomm with an
alignment field, if it is supported.
From-SVN: r139979
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 17bdeb44ae6..30a67a7de02 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -377,11 +377,13 @@ #undef HAVE_AS_TLS #endif + /* Define if your assembler supports VSX instructions. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_VSX #endif + /* Define to 1 if you have the `atoll' function. */ #ifndef USED_FOR_TARGET #undef HAVE_ATOLL @@ -846,6 +848,12 @@ /* Define if your assembler and linker support .hidden. */ #undef HAVE_GAS_HIDDEN +/* Define if your assembler supports .lcomm with an alignment field. */ +#ifndef USED_FOR_TARGET +#undef HAVE_GAS_LCOMM_WITH_ALIGNMENT +#endif + + /* Define if your assembler supports .literal16. */ #ifndef USED_FOR_TARGET #undef HAVE_GAS_LITERAL16 |