* dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Heed flag_merge_constants.

From-SVN: r67403
This commit is contained in:
Alan Modra 2003-06-03 20:45:01 +00:00 committed by Alan Modra
parent 1358ccea48
commit b0c242c029
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-06-03 Alan Modra <amodra@bigpond.net.au>
* dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Heed flag_merge_constants.
2003-06-03 Jason Thorpe <thorpej@wasabisystems.com>
* config.gcc (default_use_cxa_atexit): New variable, defaults to no.

View File

@ -3908,7 +3908,9 @@ static int maybe_emit_file PARAMS ((int));
/* Section flags for .debug_str section. */
#ifdef HAVE_GAS_SHF_MERGE
#define DEBUG_STR_SECTION_FLAGS \
(SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1)
(flag_merge_constants \
? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
: SECTION_DEBUG)
#else
#define DEBUG_STR_SECTION_FLAGS SECTION_DEBUG
#endif