summaryrefslogtreecommitdiff
path: root/bfd/archive.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1999-12-10 18:51:35 +0000
committerNick Clifton <nickc@redhat.com>1999-12-10 18:51:35 +0000
commit2ee91079e8a6d2e0b6151129041bb7f4545dbd2a (patch)
tree169e98bca304e50e5a75b34608e4e0bda1a9b4d3 /bfd/archive.c
parent187eccd48087c785f20d9ef70979843ead9e59f0 (diff)
downloadgdb-2ee91079e8a6d2e0b6151129041bb7f4545dbd2a.tar.gz
Revert previous patch.
Diffstat (limited to 'bfd/archive.c')
-rw-r--r--bfd/archive.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/bfd/archive.c b/bfd/archive.c
index 3390a1c2635..19293af4573 100644
--- a/bfd/archive.c
+++ b/bfd/archive.c
@@ -1804,19 +1804,16 @@ _bfd_compute_and_write_armap (arch, elength)
{
flagword flags = (syms[src_count])->flags;
asection *sec = syms[src_count]->section;
- size_t namelen;
- struct orl *new_map;
- if (bfd_is_und_section (sec))
- continue;
- else if (bfd_is_com_section (sec))
+ if ((flags & BSF_GLOBAL ||
+ flags & BSF_WEAK ||
+ flags & BSF_INDIRECT ||
+ bfd_is_com_section (sec))
+ && ! bfd_is_und_section (sec))
{
- if (! bfd_allow_commons_in_armap (arch))
- continue;
- }
- else if ((flags & (BSF_GLOBAL | BSF_WEAK | BSF_INDIRECT)) == 0)
- continue;
-
+ size_t namelen;
+ struct orl *new_map;
+
/* This symbol will go into the archive header */
if (orl_count == orl_max)
{
@@ -1845,6 +1842,7 @@ _bfd_compute_and_write_armap (arch, elength)
stridx += namelen + 1;
++orl_count;
+ }
}
}