diff options
author | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-28 08:07:39 +0000 |
---|---|---|
committer | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-28 08:07:39 +0000 |
commit | c23e11b583478cf23e55878dc6d4078bce49ba22 (patch) | |
tree | 54fa8e39315a2300568c6f1addebf0270867b3ce /gcc/config.in | |
parent | 56d808cf001ff2e652e0186ab4e2c29f46c394ff (diff) | |
download | gcc-c23e11b583478cf23e55878dc6d4078bce49ba22.tar.gz |
* configure.ac: Add test for new section attribute
specifier "e" via define HAVE_GAS_SECTION_EXCLUDE.
* config.in: Regenerated.
* configure: Regenerated.
* config/i386/winnt.c (i386_pe_asm_named_section): Emit
new section flag "e" for excluded sections, if supported.
Otherwise we mark section withc SECTION_EXCLUDE flag
as never-load.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179308 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index d9b9805a2a9..f2847d87895 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1015,6 +1015,12 @@ #endif +/* Define if your assembler supports specifying the section flag e. */ +#ifndef USED_FOR_TARGET +#undef HAVE_GAS_SECTION_EXCLUDE +#endif + + /* Define 0/1 if your assembler supports marking sections with SHF_MERGE flag. */ #ifndef USED_FOR_TARGET |