diff options
author | Alan Modra <amodra@gmail.com> | 2001-08-14 02:01:31 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-08-14 02:01:31 +0000 |
commit | 39dcfe18ca8ab5b4b9824fde09cac4fd0aceff19 (patch) | |
tree | c4a768279b410e519f7ebf16d6a9542153f9db11 /ld/mpw-elfmips.c | |
parent | 16bad250baf9b63989b87a88312888436b1b2651 (diff) | |
download | gdb-39dcfe18ca8ab5b4b9824fde09cac4fd0aceff19.zip gdb-39dcfe18ca8ab5b4b9824fde09cac4fd0aceff19.tar.gz gdb-39dcfe18ca8ab5b4b9824fde09cac4fd0aceff19.tar.bz2 |
(wild_doit): Rename to lang_add_section.
Diffstat (limited to 'ld/mpw-elfmips.c')
-rw-r--r-- | ld/mpw-elfmips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/mpw-elfmips.c b/ld/mpw-elfmips.c index 86ca643..9a84e78 100644 --- a/ld/mpw-elfmips.c +++ b/ld/mpw-elfmips.c @@ -605,7 +605,7 @@ gldelf32ebmip_place_orphan (file, s) if (hold_use != NULL) { /* We have already placed a section with this name. */ - wild_doit (&hold_use->children, s, hold_use, file); + lang_add_section (&hold_use->children, s, hold_use, file); return true; } @@ -618,7 +618,7 @@ gldelf32ebmip_place_orphan (file, s) && strncmp (secname, ".gnu.warning.", sizeof ".gnu.warning." - 1) == 0 && hold_text != NULL) { - wild_doit (&hold_text->children, s, hold_text, file); + lang_add_section (&hold_text->children, s, hold_text, file); return true; } @@ -693,7 +693,7 @@ gldelf32ebmip_place_orphan (file, s) (etree_type *) NULL); os = lang_output_section_statement_lookup (secname); - wild_doit (&os->children, s, os, file); + lang_add_section (&os->children, s, os, file); lang_leave_output_section_statement ((bfd_vma) 0, "*default*", |