From 2af022575a4da4889f2a6fbe02f254964dd8bbfa Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 20 Aug 2001 03:09:07 +0000 Subject: [PATCH] * ldlang.c (insert_pad): Fix typos in last patch. --- ld/ChangeLog | 10 ++++++++++ ld/ldlang.c | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 3c53837d17..4af9b0775d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,15 @@ 2001-08-20 Alan Modra + * ldlang.c (insert_pad): Fix typos in last patch. + + * ldlang.c: When traversing lang_statement_union_type lists, + consistently use "header.next" rather than "next". + * mpw-eppcmac.c: Likewise. + * emultempl/beos.em: Likewise. + * emultempl/hppaelf.em: Likewise. + * emultempl/pe.em: Likewise. + * ldlang.h (union lang_statement_union): Remove "next" field. + * ldlang.c (insert_pad): Use offsetof macro. (lang_size_sections): Always neuter padding statements. * emultempl/hppaelf.em (hppaelf_delete_padding_statements): Delete. diff --git a/ld/ldlang.c b/ld/ldlang.c index 03a79b806a..30de02bb21 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -2637,9 +2637,9 @@ insert_pad (ptr, fill, alignment_needed, output_section, dot) lang_statement_union_type *pad; pad = ((lang_statement_union_type *) - ((char *) ptr - offsetof (lang_statement_union_type *, header.next))); + ((char *) ptr - offsetof (lang_statement_union_type, header.next))); if (ptr != &statement_list.head - && pad->header.type == lang_padding_statement_enum) + && pad->header.type == lang_padding_statement_enum && pad->padding_statement.output_section == output_section) { /* Use the existing pad statement. The above test on output