From 46212538d62a2a456f6025cf12f3d3a359fb08b9 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 24 Apr 2004 12:39:47 +0000 Subject: [PATCH] * objdump.c (disassemble_section): Don't disassemble sections without SEC_HAS_CONTENTS. --- binutils/ChangeLog | 5 +++++ binutils/objdump.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index e654faad9a..55d9ec08c9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2004-04-24 Alan Modra + + * objdump.c (disassemble_section): Don't disassemble sections + without SEC_HAS_CONTENTS. + 2004-04-22 Jakub Jelinek * objdump.c (synthsyms, synthcount): New variables. diff --git a/binutils/objdump.c b/binutils/objdump.c index 1b89fa9648..c3982e1e90 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -1572,7 +1572,8 @@ disassemble_section (bfd *abfd, asection *section, void *info) code are not normally disassembled. */ if (! disassemble_all && only == NULL - && (section->flags & SEC_CODE) == 0) + && ((section->flags & (SEC_CODE | SEC_HAS_CONTENTS)) + != (SEC_CODE | SEC_HAS_CONTENTS))) return; if (! process_section_p (section)) -- 2.34.1