2005-02-11 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 11 Feb 2005 21:03:33 +0000 (21:03 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 11 Feb 2005 21:03:33 +0000 (21:03 +0000)
(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.

gas/ChangeLog
gas/config/tc-ia64.c

index 67d0d3d9f11b499db4c79457a3b61d956e6cf0ea..01eb42ae221d60b8ce8524b3d2623c1b1292e035 100644 (file)
@@ -1,3 +1,12 @@
+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]".
index 39ed40bd40f081719f7213a12057bbd38a48d576..2fb49d7d184425aa9bdba2461f28210442426641 100644 (file)
@@ -4744,7 +4744,6 @@ dot_xdata (size)
 
   md.keep_pending_output = 1;
   set_section (name);
-  obstack_free (&notes, 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 (&notes, 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 (&notes, 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 (&notes, 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 (&notes, name);
   md.auto_align = 0;
   stmt_float_cons (kind);
   md.auto_align = saved_auto_align;