diff options
author | Nick Clifton <nickc@redhat.com> | 2000-08-03 19:40:29 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-08-03 19:40:29 +0000 |
commit | bc67d8a6e34300ea5366a2403de39e568150620b (patch) | |
tree | 2391552a1ffa89951f913aa869197d23c2f48289 /bfd/section.c | |
parent | 60523a834b4042e080f69666f4f28defa0747f87 (diff) | |
download | gdb-bc67d8a6e34300ea5366a2403de39e568150620b.zip gdb-bc67d8a6e34300ea5366a2403de39e568150620b.tar.gz gdb-bc67d8a6e34300ea5366a2403de39e568150620b.tar.bz2 |
Restore reverted code. Fix bug in reverted code which was eliminating too
many segments.
Diffstat (limited to 'bfd/section.c')
-rw-r--r-- | bfd/section.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/bfd/section.c b/bfd/section.c index 9006d19..b9a39b6 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -363,6 +363,9 @@ CODE_FRAGMENT . {* A mark flag used by some linker backends for garbage collection. *} . unsigned int gc_mark : 1; . +. {* Used by the ELF code to mark sections which have been allocated to segments. *} +. unsigned int segment_mark : 1; +. . {* End of internal packed boolean fields. *} . . {* The virtual memory address of the section - where it will be @@ -549,17 +552,17 @@ static const asymbol global_syms[] = GLOBAL_SYM_INIT (BFD_IND_SECTION_NAME, &bfd_ind_section) }; -#define STD_SECTION(SEC, FLAGS, SYM, NAME, IDX) \ - const asymbol * const SYM = (asymbol *) &global_syms[IDX]; \ - const asection SEC = \ +#define STD_SECTION(SEC, FLAGS, SYM, NAME, IDX) \ + const asymbol * const SYM = (asymbol *) &global_syms[IDX]; \ + const asection SEC = \ /* name, id, index, next, flags, user_set_vma, reloc_done, */ \ { NAME, IDX, 0, NULL, FLAGS, 0, 0, \ \ - /* linker_mark, gc_mark, vma, lma, _cooked_size, _raw_size, */ \ - 0, 0, 0, 0, 0, 0, \ + /* linker_mark, gc_mark, segment_mark, vma, lma, _cooked_size, */ \ + 0, 0, 0, 0, 0, 0, \ \ - /* output_offset, output_section, alignment_power, */ \ - 0, (struct sec *) &SEC, 0, \ + /* _raw_size, output_offset, output_section, alignment_power, */ \ + 0, 0, (struct sec *) &SEC, 0, \ \ /* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \ NULL, NULL, 0, 0, 0, \ |