* config/tc-hppa.c (pa_subspace): Make sure SEC_HAS_CONTENTS is
clear for a section with the "ZERO" attribute.
This commit is contained in:
parent
885ae6b979
commit
b8f7596cbe
2 changed files with 6 additions and 2 deletions
|
@ -7,6 +7,9 @@ Mon Dec 19 16:53:36 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
|
|||
|
||||
Mon Dec 19 14:15:07 1994 Jeff Law (law@snake.cs.utah.edu)
|
||||
|
||||
* config/tc-hppa.c (pa_subspace): Make sure SEC_HAS_CONTENTS is
|
||||
clear for a section with the "ZERO" attribute.
|
||||
|
||||
* Reduce useless symbols for ELF in an attempt to make smaller
|
||||
objects and speed up the linker.
|
||||
* config/tc-hppa.c (struct call_info): Replace end_symbol field
|
||||
|
|
|
@ -5351,11 +5351,12 @@ pa_subspace (unused)
|
|||
if (common || dup_common)
|
||||
flags |= SEC_IS_COMMON;
|
||||
|
||||
flags |= SEC_RELOC | SEC_HAS_CONTENTS;
|
||||
|
||||
/* This is a zero-filled subspace (eg BSS). */
|
||||
if (zero)
|
||||
flags &= ~SEC_LOAD;
|
||||
flags &= ~(SEC_LOAD | SEC_HAS_CONTENTS);
|
||||
|
||||
flags |= SEC_RELOC | SEC_HAS_CONTENTS;
|
||||
applicable &= flags;
|
||||
|
||||
/* If this is an existing subspace, then we want to use the
|
||||
|
|
Loading…
Reference in a new issue