aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-07-10 02:05:40 +0000
committerAlan Modra <amodra@gmail.com>2000-07-10 02:05:40 +0000
commit3df7b4e2d2147801fdfd6d7bf5080b5c206745cd (patch)
tree7ae3cfda77f8db8048170f0f4cc9342592e109f0
parent1da5001cc9ee419de9c1cdee45b62c27ee77f7d3 (diff)
downloadgdb-3df7b4e2d2147801fdfd6d7bf5080b5c206745cd.zip
gdb-3df7b4e2d2147801fdfd6d7bf5080b5c206745cd.tar.gz
gdb-3df7b4e2d2147801fdfd6d7bf5080b5c206745cd.tar.bz2
Avoid negative section sequence ids.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/section.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index c1ebe2a..ee300e7 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-10 Alan Modra <alan@linuxcare.com.au>
+
+ * section.c (bfd_make_section_anyway): Start section_id at 0x10.
+ (STD_SECTION): Avoid negative ids, instead use 0 to 3.
+
2000-07-09 Koundinya K <kk@ddeorg.soft.net>
* elf32-mips.c (sort_dynamic_relocs): New Function.
diff --git a/bfd/section.c b/bfd/section.c
index 3b51629..9006d19 100644
--- a/bfd/section.c
+++ b/bfd/section.c
@@ -552,8 +552,8 @@ static const asymbol global_syms[] =
#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, -1-(IDX), 0, NULL, FLAGS, 0, 0, \
+ /* 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, \
@@ -693,7 +693,7 @@ bfd_make_section_anyway (abfd, name)
bfd *abfd;
const char *name;
{
- static int section_id = 0;
+ static int section_id = 0x10; /* id 0 to 3 used by STD_SECTION. */
asection *newsect;
asection **prev = &abfd->sections;
asection *sect = abfd->sections;