aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1994-01-18 12:05:32 +0000
committerDavid MacKenzie <djm@cygnus>1994-01-18 12:05:32 +0000
commit0c205af2c5f39a0cb37e9a9088bcb32bcb6caf66 (patch)
treeee1880847da4fd32fbf787dc5b8fe7fae0d08b36 /bfd
parent5cc730861d03cf41d5857206ea1839f6490e764d (diff)
downloadgdb-0c205af2c5f39a0cb37e9a9088bcb32bcb6caf66.zip
gdb-0c205af2c5f39a0cb37e9a9088bcb32bcb6caf66.tar.gz
gdb-0c205af2c5f39a0cb37e9a9088bcb32bcb6caf66.tar.bz2
* aoutx.h (translate_from_native_sym_flags): Give warning symbols
an (unused) nonzero section value, needed for check below.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/aoutx.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 735b876..71136c0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jan 18 03:54:59 1994 David J. Mackenzie (djm@thepub.cygnus.com)
+
+ * aoutx.h (translate_from_native_sym_flags): Give warning symbols
+ an (unused) nonzero section value, needed for check below.
+
Mon Jan 17 15:12:07 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* aoutx.h (translate_from_native_sym_flags,
diff --git a/bfd/aoutx.h b/bfd/aoutx.h
index f82992e..59137a0 100644
--- a/bfd/aoutx.h
+++ b/bfd/aoutx.h
@@ -1168,6 +1168,11 @@ DEFUN (translate_from_native_sym_flags, (sym_pointer, cache_ptr, abfd),
abort ();
cache_ptr->symbol.value = (bfd_vma) ((cache_ptr + 1));
+ /* We don't use a warning symbol's section, but we need
+ it to be nonzero for the sanity check below, so
+ pick one arbitrarily. */
+ cache_ptr->symbol.section = &bfd_abs_section;
+
/* We furgle with the next symbol in place.
We don't want it to be undefined, we'll trample the type */
(sym_pointer + 1)->e_type[0] = 0xff;