diff options
author | Tristan Gingold <gingold@adacore.com> | 2011-05-06 14:48:56 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2011-05-06 14:48:56 +0000 |
commit | f3b574bf97c26bf49cad6a901c94cf831f3c362d (patch) | |
tree | 0e1ee37ae297b8b2e0f5caac01daa7fe72e46107 /gas/read.c | |
parent | 19094d10cd61cb12b8725a4a1495f16c3f842df0 (diff) | |
download | gdb-f3b574bf97c26bf49cad6a901c94cf831f3c362d.zip gdb-f3b574bf97c26bf49cad6a901c94cf831f3c362d.tar.gz gdb-f3b574bf97c26bf49cad6a901c94cf831f3c362d.tar.bz2 |
2011-05-06 Tristan Gingold <gingold@adacore.com>
* read.c (s_comm_internal): Remove code for OBJ_VMS.
(s_data): Ditto.
(s_text): Ditto.
* write.c (write_object_file): Ditto.
* symbols.c (define_sym_at_dot): Ditto.
(colon): Ditto.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -1508,13 +1508,6 @@ s_comm_internal (int param, S_SET_VALUE (symbolP, (valueT) size); S_SET_EXTERNAL (symbolP); S_SET_SEGMENT (symbolP, bfd_com_section_ptr); -#ifdef OBJ_VMS - { - extern int flag_one; - if (size == 0 || !flag_one) - S_GET_OTHER (symbolP) = const_flag; - } -#endif } demand_empty_rest_of_line (); @@ -1653,9 +1646,6 @@ s_data (int ignore ATTRIBUTE_UNUSED) subseg_set (section, (subsegT) temp); -#ifdef OBJ_VMS - const_flag = 0; -#endif demand_empty_rest_of_line (); } @@ -3463,9 +3453,6 @@ s_text (int ignore ATTRIBUTE_UNUSED) temp = get_absolute_expression (); subseg_set (text_section, (subsegT) temp); demand_empty_rest_of_line (); -#ifdef OBJ_VMS - const_flag &= ~IN_DEFAULT_SECTION; -#endif } /* .weakref x, y sets x as an alias to y that, as long as y is not |