diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-02-11 21:03:33 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-02-11 21:03:33 +0000 |
commit | 01b9137461f11882a03589e8c40fd718b0c09a09 (patch) | |
tree | 8a03eb128f65dbe9a3d7e9e62fa69f80c93f6d3d /gas | |
parent | 970d6792b4d9d469315bd3ac3b808a45a97d8d8f (diff) | |
download | gdb-01b9137461f11882a03589e8c40fd718b0c09a09.zip gdb-01b9137461f11882a03589e8c40fd718b0c09a09.tar.gz gdb-01b9137461f11882a03589e8c40fd718b0c09a09.tar.bz2 |
2005-02-11 H.J. Lu <hongjiu.lu@intel.com>
(dot_xdata): Undo the last change. Section name is used by
set_section.
(dot_float_cons): Likewise.
(dot_xstringer): Likewise.
(dot_xdata_ua): Likewise.
(dot_float_cons_ua): Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 9 | ||||
-rw-r--r-- | gas/config/tc-ia64.c | 5 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 67d0d3d..01eb42a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,14 @@ 2005-02-11 H.J. Lu <hongjiu.lu@intel.com> + (dot_xdata): Undo the last change. Section name is used by + set_section. + (dot_float_cons): Likewise. + (dot_xstringer): Likewise. + (dot_xdata_ua): Likewise. + (dot_float_cons_ua): Likewise. + +2005-02-11 H.J. Lu <hongjiu.lu@intel.com> + * NEWS: Mention "-munwind-check=[warning|error]". * config/tc-ia64.c (md): Add unwind_check. diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 39ed40b..2fb49d7 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -4744,7 +4744,6 @@ dot_xdata (size) md.keep_pending_output = 1; set_section (name); - obstack_free (¬es, name); cons (size); obj_elf_previous (0); md.keep_pending_output = 0; @@ -4799,7 +4798,6 @@ dot_xfloat_cons (kind) md.keep_pending_output = 1; set_section (name); - obstack_free (¬es, name); stmt_float_cons (kind); obj_elf_previous (0); md.keep_pending_output = 0; @@ -4815,7 +4813,6 @@ dot_xstringer (zero) md.keep_pending_output = 1; set_section (name); - obstack_free (¬es, name); stringer (zero); obj_elf_previous (0); md.keep_pending_output = 0; @@ -4832,7 +4829,6 @@ dot_xdata_ua (size) md.keep_pending_output = 1; set_section (name); - obstack_free (¬es, name); md.auto_align = 0; cons (size); md.auto_align = saved_auto_align; @@ -4851,7 +4847,6 @@ dot_xfloat_cons_ua (kind) md.keep_pending_output = 1; set_section (name); - obstack_free (¬es, name); md.auto_align = 0; stmt_float_cons (kind); md.auto_align = saved_auto_align; |