* objfiles.c (free_objfile): Move comment.
authorDoug Evans <dje@google.com>
Wed, 25 Sep 2013 00:15:30 +0000 (00:15 +0000)
committerDoug Evans <dje@google.com>
Wed, 25 Sep 2013 00:15:30 +0000 (00:15 +0000)
gdb/ChangeLog
gdb/objfiles.c

index 582ce913b14061f1ab3f69db8cdfbce75ba5b493..1d3d96fed5b7192af78d2fb66aced1836c8c34a7 100644 (file)
@@ -1,3 +1,7 @@
+2013-09-24  Doug Evans  <dje@google.com>
+
+       * objfiles.c (free_objfile): Move comment.
+
 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-exp.y (string_to_operator): Delete.
index 6585c3ff0ed0ac4d918024d272a8396d2c33fd9c..59ab632f7370cd70adb6aea98edc0fcda6eaaef5 100644 (file)
@@ -645,8 +645,6 @@ free_objfile (struct objfile *objfile)
       clear_current_source_symtab_and_line ();
   }
 
-  /* The last thing we do is free the objfile struct itself.  */
-
   if (objfile->global_psymbols.list)
     xfree (objfile->global_psymbols.list);
   if (objfile->static_psymbols.list)
@@ -660,6 +658,7 @@ free_objfile (struct objfile *objfile)
   /* Rebuild section map next time we need it.  */
   get_objfile_pspace_data (objfile->pspace)->section_map_dirty = 1;
 
+  /* The last thing we do is free the objfile struct itself.  */
   xfree (objfile);
 }
 
This page took 0.061118 seconds and 4 git commands to generate.