* ldlang.c (print_output_section_statement): Print load address

when lma differs from vma.
testsuite/
	* ld-scripts/overlay-size-map.d: Update.
This commit is contained in:
Alan Modra
2006-12-12 08:10:40 +00:00
parent 790c0838ea
commit 67f744f3bc
4 changed files with 20 additions and 17 deletions

View File

@ -3412,14 +3412,8 @@ print_output_section_statement
minfo ("0x%V %W", section->vma, section->size);
if (output_section_statement->load_base != NULL)
{
bfd_vma addr;
addr = exp_get_abs_int (output_section_statement->load_base, 0,
"load base");
minfo (_(" load address 0x%V"), addr);
}
if (section->vma != section->lma)
minfo (_(" load address 0x%V"), section->lma);
}
print_nl ();