diff options
author | Alan Modra <amodra@gmail.com> | 2012-05-30 04:19:11 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-05-30 04:19:11 +0000 |
commit | 6d8bf25d7e9b6fa7cff57137e7c55bcb11b227d8 (patch) | |
tree | f1e29ca76d1291788cd71991ae5d8c4e88f85bb6 /ld/ldlang.h | |
parent | ebd86fb5688dac848266e6a902ea192fe9aa1576 (diff) | |
download | gdb-6d8bf25d7e9b6fa7cff57137e7c55bcb11b227d8.zip gdb-6d8bf25d7e9b6fa7cff57137e7c55bcb11b227d8.tar.gz gdb-6d8bf25d7e9b6fa7cff57137e7c55bcb11b227d8.tar.bz2 |
* ldlang.h (lang_output_section_statement_type): Rename
"section_relative_symbol" field to "update_dot".
* ldlang.c: Update all uses.
(strip_excluded_output_sections): Don't test update_dot_tree here..
(lang_leave_overlay): ..set update_dot here.
Diffstat (limited to 'ld/ldlang.h')
-rw-r--r-- | ld/ldlang.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ldlang.h b/ld/ldlang.h index b5d50c5..7f1e743 100644 --- a/ld/ldlang.h +++ b/ld/ldlang.h @@ -163,8 +163,8 @@ typedef struct lang_output_section_statement_struct unsigned int all_input_readonly : 1; /* If this section should be ignored. */ unsigned int ignored : 1; - /* If there is a symbol relative to this section. */ - unsigned int section_relative_symbol : 1; + /* If this section should update "dot". Prevents section being ignored. */ + unsigned int update_dot : 1; } lang_output_section_statement_type; typedef struct |