diff options
author | gjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-12 18:22:01 +0000 |
---|---|---|
committer | gjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-12 18:22:01 +0000 |
commit | 0c8f5ee553fb83423f4d74f99be68e11a9441ea1 (patch) | |
tree | 504edea4722e4e58c1231f11edc8f5e6503ad672 /gcc/output.h | |
parent | 63477dcc150d6f7c8124c1c9a7095cfae5cd9e39 (diff) | |
download | gcc-0c8f5ee553fb83423f4d74f99be68e11a9441ea1.tar.gz |
PR other/52545
* output.h (SECTION_EXCLUDE, SECTION_MACH_DEP): Don't use
SECTION_MACH_DEP reserved bits for SECTION_EXCLUDE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185259 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/output.h b/gcc/output.h index bc8c9d97825..bd83199b6a9 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -446,8 +446,8 @@ extern void no_asm_to_stream (FILE *); #define SECTION_STYLE_MASK 0x600000 /* bits used for SECTION_STYLE */ #define SECTION_COMMON 0x800000 /* contains common data */ #define SECTION_RELRO 0x1000000 /* data is readonly after relocation processing */ -#define SECTION_MACH_DEP 0x2000000 /* subsequent bits reserved for target */ -#define SECTION_EXCLUDE 0x4000000 /* discarded by the linker */ +#define SECTION_EXCLUDE 0x2000000 /* discarded by the linker */ +#define SECTION_MACH_DEP 0x4000000 /* subsequent bits reserved for target */ /* This SECTION_STYLE is used for unnamed sections that we can switch to using a special assembler directive. */ |