summaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2002-02-04 03:03:44 +0000
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2002-02-04 03:03:44 +0000
commit2ab08d579b3ca04d3a00c831252861ceccdd509e (patch)
tree9e8245138c4f5a27f756f13a4d867cb52d972455 /gcc/output.h
parent2048132d3424521f68206203ecac82e35b3f9a5e (diff)
downloadgcc-2ab08d579b3ca04d3a00c831252861ceccdd509e.tar.gz
2002-02-04 Anthony Green <green@redhat.com>
* output.h (SECTION_OVERRIDE): Define. * varasm.c (named_section): Obey SECTION_OVERRIDE. java: 2002-02-04 Anthony Green <green@redhat.com> * class.c (build_utf8_ref): Put UTF-8 constants into merged sections if available. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49469 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r--gcc/output.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h
index 1a2eefb36eb..cb5e4d089a1 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -512,7 +512,8 @@ extern void no_asm_to_stream PARAMS ((FILE *));
#define SECTION_MERGE 0x08000 /* contains mergeable data */
#define SECTION_STRINGS 0x10000 /* contains zero terminated strings without
embedded zeros */
-#define SECTION_MACH_DEP 0x20000 /* subsequent bits reserved for target */
+#define SECTION_OVERRIDE 0x20000 /* allow override of default flags */
+#define SECTION_MACH_DEP 0x40000 /* subsequent bits reserved for target */
extern unsigned int get_named_section_flags PARAMS ((const char *));
extern bool set_named_section_flags PARAMS ((const char *, unsigned int));