+2010-08-27 Doug Evans <dje@google.com>
+
+ * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
+ the order they're defined in. munmap .debug_types buffer.
+
2010-08-19 Stan Shebs <stan@codesourcery.com>
* NEWS: Mention some additional changes.
{
struct dwarf2_per_objfile *data = d;
+ /* This is sorted according to the order they're defined in to make it easier
+ to keep in sync. */
munmap_section_buffer (&data->info);
munmap_section_buffer (&data->abbrev);
munmap_section_buffer (&data->line);
- munmap_section_buffer (&data->str);
+ munmap_section_buffer (&data->loc);
munmap_section_buffer (&data->macinfo);
+ munmap_section_buffer (&data->str);
munmap_section_buffer (&data->ranges);
- munmap_section_buffer (&data->loc);
+ munmap_section_buffer (&data->types);
munmap_section_buffer (&data->frame);
munmap_section_buffer (&data->eh_frame);
}