From 2ab08d579b3ca04d3a00c831252861ceccdd509e Mon Sep 17 00:00:00 2001 From: bryce Date: Mon, 4 Feb 2002 03:03:44 +0000 Subject: 2002-02-04 Anthony Green * output.h (SECTION_OVERRIDE): Define. * varasm.c (named_section): Obey SECTION_OVERRIDE. java: 2002-02-04 Anthony Green * 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 --- gcc/output.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/output.h') 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)); -- cgit v1.2.1