From 1b16474bab525733bf736f8f5fc859985bc798be Mon Sep 17 00:00:00 2001 From: gingold Date: Thu, 25 Jun 2009 13:18:46 +0000 Subject: [PATCH] 2009-06-25 Tristan Gingold * ldlang.c (print_input_section): Add is_discarded parameter. Adjust prototype. (lang_map): Print the size of discarded sections. (print_statement): Adjust call to print_input_section. --- ld/ChangeLog | 7 +++++++ ld/ldlang.c | 11 ++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index b0a099e65a..7b65d0dd9a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2009-06-25 Tristan Gingold + + * ldlang.c (print_input_section): Add is_discarded parameter. Adjust + prototype. + (lang_map): Print the size of discarded sections. + (print_statement): Adjust call to print_input_section. + 2009-06-18 Dave Korn Merge cegcc and mingw32ce target name changes from CeGCC project: diff --git a/ld/ldlang.c b/ld/ldlang.c index 30d71aa521..dda2f22a20 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -78,7 +78,7 @@ static void print_statement (lang_statement_union_type *, static void print_statement_list (lang_statement_union_type *, lang_output_section_statement_type *); static void print_statements (void); -static void print_input_section (asection *); +static void print_input_section (asection *, bfd_boolean); static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *); static void lang_record_phdrs (void); static void lang_do_version_exports_section (void); @@ -1917,7 +1917,7 @@ lang_map (void) dis_header_printed = TRUE; } - print_input_section (s); + print_input_section (s, TRUE); } } @@ -3957,7 +3957,7 @@ print_all_symbols (asection *sec) /* Print information about an input section to the map file. */ static void -print_input_section (asection *i) +print_input_section (asection *i, bfd_boolean is_discarded) { bfd_size_type size = i->size; int len; @@ -3986,7 +3986,8 @@ print_input_section (asection *i) else { addr = print_dot; - size = 0; + if (!is_discarded) + size = 0; } minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner); @@ -4281,7 +4282,7 @@ print_statement (lang_statement_union_type *s, print_reloc_statement (&s->reloc_statement); break; case lang_input_section_enum: - print_input_section (s->input_section.section); + print_input_section (s->input_section.section, FALSE); break; case lang_padding_statement_enum: print_padding_statement (&s->padding_statement); -- 2.11.0