aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorTimothy Wall <twall@alum.mit.edu>2000-04-07 00:58:07 +0000
committerTimothy Wall <twall@alum.mit.edu>2000-04-07 00:58:07 +0000
commit34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf (patch)
tree6d15ec296466863723d444148542a94e7624a852 /binutils
parenteb6bd4d38ea6ee7306c538b657c008f77f38cd62 (diff)
downloadfsf-binutils-gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.zip
fsf-binutils-gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.tar.gz
fsf-binutils-gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.tar.bz2
SEC_BLOCK, SEC_CLINK, and C_STATLAB added (TI COFF support).
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/objdump.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 2bbfef4..0b9c4ce 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2000-04-06 Timothy Wall <twall@cygnus.com>
+
+ * objdump.c (dump_section_header): Print CLINK and BLOCK flags.
+
2000-04-06 Jason Merrill <jason@yorick.cygnus.com>
* readelf.c (decode_location_expression): Loop through multiple
diff --git a/binutils/objdump.c b/binutils/objdump.c
index 9c83a63e..bfcc143 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -376,6 +376,8 @@ dump_section_header (abfd, section, ignored)
PF (SEC_NEVER_LOAD, "NEVER_LOAD");
PF (SEC_EXCLUDE, "EXCLUDE");
PF (SEC_SORT_ENTRIES, "SORT_ENTRIES");
+ PF (SEC_BLOCK, "BLOCK");
+ PF (SEC_CLINK, "CLINK");
PF (SEC_SMALL_DATA, "SMALL_DATA");
PF (SEC_SHARED, "SHARED");