diff options
author | Alan Modra <amodra@gmail.com> | 2008-02-16 00:06:02 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-02-16 00:06:02 +0000 |
commit | 819da74e19e58ccb6cf378100a3023b9f2532c40 (patch) | |
tree | 7d86f152ee303583b7bcbdf20101fadbcf1095e7 /ld | |
parent | 1fb93dfff914856fe65d16fdf7d0bfc937669320 (diff) | |
download | binutils-gdb-819da74e19e58ccb6cf378100a3023b9f2532c40.tar.gz |
PR ld/5761
* ldexp.c (fold_name <LOADADDR>): Check result of evaluating
load_base before calling make_abs.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/ldexp.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index f8d3bf85844..0351411706e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2008-02-16 Alan Modra <amodra@bigpond.net.au> + + PR ld/5761 + * ldexp.c (fold_name <LOADADDR>): Check result of evaluating + load_base before calling make_abs. + 2008-02-15 Alan Modra <amodra@bigpond.net.au> * emultempl/alphaelf.em (alpha_after_open): Use elf_object_id. diff --git a/ld/ldexp.c b/ld/ldexp.c index 16ee5dd5567..17dd49dd8cc 100644 --- a/ld/ldexp.c +++ b/ld/ldexp.c @@ -605,7 +605,8 @@ fold_name (etree_type *tree) else { exp_fold_tree_1 (os->load_base); - make_abs (); + if (expld.result.valid_p) + make_abs (); } } } |