Index: gas/ChangeLog =================================================================== RCS file: /cvs/src/src/gas/ChangeLog,v retrieving revision 1.2371 diff -u -p -r1.2371 ChangeLog --- gas/ChangeLog 23 Feb 2005 12:28:01 -0000 1.2371 +++ gas/ChangeLog 24 Feb 2005 16:22:13 -0000 @@ -1,3 +1,7 @@ +2005-02-24 James Lemke + + * write.c (write_object_file): Make link update unconditional. + 2005-02-23 Alan Modra * cgen.c: Warning fixes. Index: gas/write.c =================================================================== RCS file: /cvs/src/src/gas/write.c,v retrieving revision 1.82 diff -u -p -r1.82 write.c --- gas/write.c 7 Feb 2005 03:13:10 -0000 1.82 +++ gas/write.c 24 Feb 2005 16:22:14 -0000 @@ -1474,8 +1474,7 @@ write_object_file (void) bfd_section_list_remove (stdoutput, seclist); stdoutput->section_count--; } - else - seclist = &(*seclist)->next; + seclist = &(*seclist)->next; } i = 0; bfd_map_over_sections (stdoutput, renumber_sections, &i);