summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-09-28 21:10:41 +0000
committerRichard Henderson <rth@redhat.com>2001-09-28 21:10:41 +0000
commit299bf734748766ab89f02e8849c322418dda191d (patch)
tree05a90d47751cd7fe3f08c6a978b73b9429fe3af5
parent96395d38f492bfe85d7adf46496bbc1637d6004e (diff)
downloadbinutils-redhat-299bf734748766ab89f02e8849c322418dda191d.tar.gz
* objdump.c (dump_section_header): Dump SEC_ARCH_BIT_0.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/objdump.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 6060162e62..bf749597fa 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-28 Richard Henderson <rth@redhat.com>
+
+ * objdump.c (dump_section_header): Dump SEC_ARCH_BIT_0.
+
2001-09-26 Alan Modra <amodra@bigpond.net.au>
* bucomm.c (fatal): Define using VPARAMS, VA_OPEN, VA_FIXEDARG,
diff --git a/binutils/objdump.c b/binutils/objdump.c
index 10727e3e46..2fbe28b184 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -304,9 +304,6 @@ dump_section_header (abfd, section, ignored)
PF (SEC_CONSTRUCTOR_BSS, "CONSTRUCTOR BSS");
PF (SEC_LOAD, "LOAD");
PF (SEC_RELOC, "RELOC");
-#ifdef SEC_BALIGN
- PF (SEC_BALIGN, "BALIGN");
-#endif
PF (SEC_READONLY, "READONLY");
PF (SEC_CODE, "CODE");
PF (SEC_DATA, "DATA");
@@ -319,6 +316,7 @@ dump_section_header (abfd, section, ignored)
PF (SEC_CLINK, "CLINK");
PF (SEC_SMALL_DATA, "SMALL_DATA");
PF (SEC_SHARED, "SHARED");
+ PF (SEC_ARCH_BIT_0, "ARCH_BIT_0");
if ((section->flags & SEC_LINK_ONCE) != 0)
{