forked from Imagelibrary/binutils-gdb
ld: Fix printed sizes in map file
For targets with octets_per_byte > 1, testsuite/ld-scripts/rgn-over*
produce wrong sizes in the generated map files:
.text 0x0000000000001000 0x6
^^^ # correct
*(.txt)
.txt 0x0000000000001000 0xc tmpdir/rgn-over.o
^^^ # should also be 0x6
* ldlang.c (print_input_section): Shift printed size by opb_shift.
This commit is contained in:
committed by
Alan Modra
parent
825165c57e
commit
b0a7971ad4
@@ -4653,7 +4653,7 @@ print_input_section (asection *i, bfd_boolean is_discarded)
|
||||
size = 0;
|
||||
}
|
||||
|
||||
minfo ("0x%V %W %pB\n", addr, size, i->owner);
|
||||
minfo ("0x%V %W %pB\n", addr, TO_ADDR (size), i->owner);
|
||||
|
||||
if (size != i->rawsize && i->rawsize != 0)
|
||||
{
|
||||
@@ -4669,7 +4669,7 @@ print_input_section (asection *i, bfd_boolean is_discarded)
|
||||
--len;
|
||||
}
|
||||
|
||||
minfo (_("%W (size before relaxing)\n"), i->rawsize);
|
||||
minfo (_("%W (size before relaxing)\n"), TO_ADDR (i->rawsize));
|
||||
}
|
||||
|
||||
if (i->output_section != NULL
|
||||
|
||||
Reference in New Issue
Block a user