diff options
author | Alan Modra <amodra@gmail.com> | 2006-08-16 08:31:45 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-08-16 08:31:45 +0000 |
commit | cde9e0be8b661444a3a362e4d8bffaf8b742f2e1 (patch) | |
tree | 2443c615d0e22749a00f2964361115d276849235 /ld/ldlang.h | |
parent | 6173858bda5823a7bad6df3f98a29df52aa7cc09 (diff) | |
download | gdb-cde9e0be8b661444a3a362e4d8bffaf8b742f2e1.zip gdb-cde9e0be8b661444a3a362e4d8bffaf8b742f2e1.tar.gz gdb-cde9e0be8b661444a3a362e4d8bffaf8b742f2e1.tar.bz2 |
ld/
PR 3052
* ldlang.h (lang_output_section_statement_type): Replace
"processed" field with "processed_vma" and "processed_lma".
* ldlang.c (lang_do_assignments_1): Move lma setting code..
(lang_size_sections_1): ..to here.
(lang_reset_memory_regions): Adjust for
lang_output_section_statement_type change.
* ldexp.c (fold_name): Likewise.
And this is something I forgot the check in from the previous patch.
ld/testsuite/
* ld-scripts/overlay-size-map.d: Adjust.
Diffstat (limited to 'ld/ldlang.h')
-rw-r--r-- | ld/ldlang.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/ldlang.h b/ld/ldlang.h index c23c3e5..1c135b6 100644 --- a/ld/ldlang.h +++ b/ld/ldlang.h @@ -150,7 +150,8 @@ typedef struct lang_output_section_statement_struct int constraint; flagword flags; enum section_type sectype; - unsigned int processed : 1; + unsigned int processed_vma : 1; + unsigned int processed_lma : 1; unsigned int all_input_readonly : 1; unsigned int ignored : 1; } lang_output_section_statement_type; |