diff options
author | Alan Modra <amodra@gmail.com> | 2005-11-16 08:32:54 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-11-16 08:32:54 +0000 |
commit | bd4d42c17411128324b921c2648e8b3d4f97df2c (patch) | |
tree | 57aeb3fa1a44ca323ec40b9abfbde1c448164293 /ld/ldlang.h | |
parent | 7815f84885ca14122f500112c406bbbeadf24988 (diff) | |
download | ppe42-binutils-bd4d42c17411128324b921c2648e8b3d4f97df2c.tar.gz ppe42-binutils-bd4d42c17411128324b921c2648e8b3d4f97df2c.zip |
* ldlang.h (lang_output_section_statement_type): Add prev.
* ldlang.c (new_afile): Always init header.type.
(output_statement_newfunc): Set os.prev.
(output_prev_sec_find): Use os.prev.
(lang_enter_output_section_statement): Formatting.
(lang_final, lang_add_target, lang_add_fill): Likewise.
(lang_add_data, lang_add_reloc): Likewise.
(lang_add_attribute): Only alloc the header.
Diffstat (limited to 'ld/ldlang.h')
-rw-r--r-- | ld/ldlang.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ld/ldlang.h b/ld/ldlang.h index 12523a4fac..454a87c3b4 100644 --- a/ld/ldlang.h +++ b/ld/ldlang.h @@ -130,6 +130,7 @@ typedef struct lang_output_section_statement_struct lang_statement_header_type header; lang_statement_list_type children; struct lang_output_section_statement_struct *next; + struct lang_output_section_statement_struct *prev; const char *name; asection *bfd_section; lang_memory_region_type *region; |