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/emultempl/pe.em | |
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/emultempl/pe.em')
-rw-r--r-- | ld/emultempl/pe.em | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index fe1a757..6519eae 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -9,7 +9,7 @@ rm -f e${EMULATION_NAME}.c (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-) cat >>e${EMULATION_NAME}.c <<EOF /* This file is part of GLD, the Gnu Linker. - Copyright 1995, 1996, 1997, 1998, 1999, 2000 + Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -1458,7 +1458,7 @@ gld_${EMULATION_NAME}_place_orphan (file, s) && os->bfd_section != NULL && ((s->flags ^ os->bfd_section->flags) & (SEC_LOAD | SEC_ALLOC)) == 0) { - wild_doit (&add_child, s, os, file); + lang_add_section (&add_child, s, os, file); } else { @@ -1562,7 +1562,7 @@ gld_${EMULATION_NAME}_place_orphan (file, s) (etree_type *) NULL, (etree_type *) NULL); - wild_doit (&add_child, s, os, file); + lang_add_section (&add_child, s, os, file); lang_leave_output_section_statement ((bfd_vma) 0, "*default*", |