mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
the order they're defined in. munmap .debug_types buffer.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
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-26 Doug Evans <dje@google.com>
|
2010-08-26 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
* dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
|
* dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
|
||||||
|
@ -14545,13 +14545,16 @@ dwarf2_per_objfile_free (struct objfile *objfile, void *d)
|
|||||||
{
|
{
|
||||||
struct dwarf2_per_objfile *data = d;
|
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->info);
|
||||||
munmap_section_buffer (&data->abbrev);
|
munmap_section_buffer (&data->abbrev);
|
||||||
munmap_section_buffer (&data->line);
|
munmap_section_buffer (&data->line);
|
||||||
munmap_section_buffer (&data->str);
|
|
||||||
munmap_section_buffer (&data->macinfo);
|
|
||||||
munmap_section_buffer (&data->ranges);
|
|
||||||
munmap_section_buffer (&data->loc);
|
munmap_section_buffer (&data->loc);
|
||||||
|
munmap_section_buffer (&data->macinfo);
|
||||||
|
munmap_section_buffer (&data->str);
|
||||||
|
munmap_section_buffer (&data->ranges);
|
||||||
|
munmap_section_buffer (&data->types);
|
||||||
munmap_section_buffer (&data->frame);
|
munmap_section_buffer (&data->frame);
|
||||||
munmap_section_buffer (&data->eh_frame);
|
munmap_section_buffer (&data->eh_frame);
|
||||||
munmap_section_buffer (&data->gdb_index);
|
munmap_section_buffer (&data->gdb_index);
|
||||||
|
Reference in New Issue
Block a user