Wed Sep 14 12:49:12 1994 Steve Chamberlain (sac@jonny.cygnus.com)

* ldlang.c (lang_do_assignments): Make sure output statement
	has an attached bfd_section before trying to dereference it.
This commit is contained in:
Steve Chamberlain 1994-09-14 20:45:43 +00:00
parent 1c1d90f1fe
commit 467a038026
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Sep 14 12:49:12 1994 Steve Chamberlain (sac@jonny.cygnus.com)
* ldlang.c (lang_do_assignments): Make sure output statement
has an attached bfd_section before trying to dereference it.
Wed Sep 14 12:48:09 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* ldmisc.c (vfinfo): Handle %D as %C, but never print the function

View File

@ -1987,8 +1987,13 @@ lang_do_assignments (s, output_section_statement, fill, dot)
}
if (os->load_base)
{
os->bfd_section->lma
= exp_get_abs_int(os->load_base, 0,"load base", lang_final_phase_enum);
/* If nothing has been placed into the output section then
it won't have a bfd_section. */
if (os->bfd_section)
{
os->bfd_section->lma
= exp_get_abs_int(os->load_base, 0,"load base", lang_final_phase_enum);
}
}
}
break;