diff options
author | Alan Modra <amodra@gmail.com> | 2007-06-27 11:54:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-06-27 11:54:10 +0000 |
commit | cc481421d02b8d2b7881bdf12e469e23aa9021e7 (patch) | |
tree | 14bdb219306b20261e61e055a241c23291c4a7f8 /ld/pe-dll.c | |
parent | 4105de343e714e0096723905ada442f1524776a6 (diff) | |
download | gdb-cc481421d02b8d2b7881bdf12e469e23aa9021e7.zip gdb-cc481421d02b8d2b7881bdf12e469e23aa9021e7.tar.gz gdb-cc481421d02b8d2b7881bdf12e469e23aa9021e7.tar.bz2 |
bfd/
* bfd.c (struct bfd): Rename "next" to "archive_next".
* archive.c: Rename uses throughout file.
* archive64.c: Likewise.
* coff-rs6000.c: Likewise.
* ecoff.c: Likewise.
* som.c: Likewise.
* bfd-in2.h: Regenerate.
binutils/
* ar.c: Rename uses of bfd.next to bfd.archive_next throughout.
* arsup.c: Likewise.
* binemul.c: Likewise.
* objcopy.c: Likewise.
* dlltool.c: Likewise.
ld/
* pe-dll.c: Rename uses of bfd.next to bfd.archive_next throughout.
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index b431c22..ab743ee 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2416,7 +2416,7 @@ pe_dll_generate_implib (def_file *def, const char *impfilename) def->exports[i].internal_name = def->exports[i].name; n = make_one (def->exports + i, outarch, ! (def->exports + i)->flag_data); - n->next = head; + n->archive_next = head; head = n; def->exports[i].internal_name = internal; } @@ -2427,8 +2427,8 @@ pe_dll_generate_implib (def_file *def, const char *impfilename) return; /* Now stick them all into the archive. */ - ar_head->next = head; - ar_tail->next = ar_head; + ar_head->archive_next = head; + ar_tail->archive_next = ar_head; head = ar_tail; if (! bfd_set_archive_head (outarch, head)) @@ -2439,7 +2439,7 @@ pe_dll_generate_implib (def_file *def, const char *impfilename) while (head != NULL) { - bfd *n = head->next; + bfd *n = head->archive_next; bfd_close (head); head = n; } |