aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1996-12-17 16:12:58 +0000
committerIan Lance Taylor <ian@airs.com>1996-12-17 16:12:58 +0000
commit69e2ff181dffb4072f272bc33f7430fa82ed6e57 (patch)
tree9202ba9594e368071ce5540655d75d570de8f9f7
parentc0dea4956d5e53f80c9d3a35b6c7a42532f0fb35 (diff)
downloadgdb-69e2ff181dffb4072f272bc33f7430fa82ed6e57.zip
gdb-69e2ff181dffb4072f272bc33f7430fa82ed6e57.tar.gz
gdb-69e2ff181dffb4072f272bc33f7430fa82ed6e57.tar.bz2
* elf.c (bfd_elf_print_symbol): Print the st_other field if it is
not zero.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index df7a148..17c196d 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Tue Dec 17 11:09:36 1996 Ian Lance Taylor <ian@cygnus.com>
+
+ * elf.c (bfd_elf_print_symbol): Print the st_other field if it is
+ not zero.
+
Mon Dec 16 14:38:39 1996 Ian Lance Taylor <ian@cygnus.com>
* elf.c (bfd_section_from_shdr): Don't check for reloc sections
diff --git a/bfd/elf.c b/bfd/elf.c
index 70d36a5..0ea1bb8 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -536,6 +536,11 @@ bfd_elf_print_symbol (ignore_abfd, filep, symbol, how)
(bfd_is_com_section (symbol->section)
? ((elf_symbol_type *) symbol)->internal_elf_sym.st_value
: ((elf_symbol_type *) symbol)->internal_elf_sym.st_size));
+ /* If the st_other field is not zero, print it. */
+ if (((elf_symbol_type *) symbol)->internal_elf_sym.st_other != 0)
+ fprintf (file, " 0x%02x",
+ ((unsigned int)
+ ((elf_symbol_type *) symbol)->internal_elf_sym.st_other));
fprintf (file, " %s", symbol->name);
}
break;