aboutsummaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2002-02-04 03:03:44 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2002-02-04 03:03:44 +0000
commit10c459437e4444fc5a111d1c3bdb96022e23716f (patch)
tree9e8245138c4f5a27f756f13a4d867cb52d972455 /gcc/output.h
parent14b7105512eb617f5a80c1853ff0f8ab18ad0324 (diff)
downloadgcc-10c459437e4444fc5a111d1c3bdb96022e23716f.zip
gcc-10c459437e4444fc5a111d1c3bdb96022e23716f.tar.gz
gcc-10c459437e4444fc5a111d1c3bdb96022e23716f.tar.bz2
output.h (SECTION_OVERRIDE): Define.
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. From-SVN: r49469
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 1a2eefb..cb5e4d0 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));