diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-04 09:43:08 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-04 09:43:08 +0000 |
commit | a65d7dd038314dbddf83304c0b03b7101ec83d50 (patch) | |
tree | af697c0f2cee31ce7d1e63bab8f60062dcbbca0f /gcc/config.in | |
parent | 8d3b4bb34e09689588a318c65a0bc9e5e3281dbb (diff) | |
download | gcc-a65d7dd038314dbddf83304c0b03b7101ec83d50.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139979 138bc75d-0d04-0410-961f-82ee72b054a4
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 |