* ldexp.c (exp_fold_tree): Don't immediately exit ld on a

failing link script assert.
This commit is contained in:
Alan Modra 2004-10-15 06:00:15 +00:00
parent 95c148b400
commit c468c8bcab
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
2004-10-15 Alan Modra <amodra@bigpond.net.au> 2004-10-15 Alan Modra <amodra@bigpond.net.au>
* ldexp.c (exp_fold_tree): Don't immediately exit ld on a
failing link script assert.
* ldctor.c (ldctor_add_set_entry): Fix comment typo. * ldctor.c (ldctor_add_set_entry): Fix comment typo.
2004-10-14 H.J. Lu <hongjiu.lu@intel.com> 2004-10-14 H.J. Lu <hongjiu.lu@intel.com>

View file

@ -669,7 +669,7 @@ exp_fold_tree (etree_type *tree,
if (result.valid_p) if (result.valid_p)
{ {
if (! result.value) if (! result.value)
einfo ("%F%P: %s\n", tree->assert_s.message); einfo ("%X%P: %s\n", tree->assert_s.message);
return result; return result;
} }
break; break;