"propogate" -> "propagate"

This commit is contained in:
Richard Henderson
1998-07-01 21:53:34 +00:00
parent 9ae0ae657f
commit 1ff137652b

View File

@ -5320,7 +5320,7 @@ static boolean elf_gc_sweep_symbol
static boolean elf_gc_allocate_got_offsets static boolean elf_gc_allocate_got_offsets
PARAMS ((struct elf_link_hash_entry *h, PTR offarg)); PARAMS ((struct elf_link_hash_entry *h, PTR offarg));
static boolean elf_gc_propogate_vtable_entries_used static boolean elf_gc_propagate_vtable_entries_used
PARAMS ((struct elf_link_hash_entry *h, PTR dummy)); PARAMS ((struct elf_link_hash_entry *h, PTR dummy));
static boolean elf_gc_smash_unused_vtentry_relocs static boolean elf_gc_smash_unused_vtentry_relocs
@ -5542,7 +5542,7 @@ elf_gc_sweep_symbol (h, idxptr)
elf_link_hash_traverse. */ elf_link_hash_traverse. */
static boolean static boolean
elf_gc_propogate_vtable_entries_used (h, okp) elf_gc_propagate_vtable_entries_used (h, okp)
struct elf_link_hash_entry *h; struct elf_link_hash_entry *h;
PTR okp; PTR okp;
{ {
@ -5559,7 +5559,7 @@ elf_gc_propogate_vtable_entries_used (h, okp)
return true; return true;
/* Make sure the parent's table is up to date. */ /* Make sure the parent's table is up to date. */
elf_gc_propogate_vtable_entries_used (h->vtable_parent, okp); elf_gc_propagate_vtable_entries_used (h->vtable_parent, okp);
if (h->vtable_entries_used == NULL) if (h->vtable_entries_used == NULL)
{ {
@ -5653,7 +5653,7 @@ elf_gc_sections (abfd, info)
/* Apply transitive closure to the vtable entry usage info. */ /* Apply transitive closure to the vtable entry usage info. */
elf_link_hash_traverse (elf_hash_table (info), elf_link_hash_traverse (elf_hash_table (info),
elf_gc_propogate_vtable_entries_used, elf_gc_propagate_vtable_entries_used,
(PTR) &ok); (PTR) &ok);
if (!ok) if (!ok)
return false; return false;