gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 28 Jun 2010 22:03:31 +0000 (22:03 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 28 Jun 2010 22:03:31 +0000 (22:03 +0000)
* dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
ALLOCATE_CPLUS_STRUCT_TYPE.

gdb/ChangeLog
gdb/dwarf2read.c

index 348eed9..5d40ebf 100644 (file)
@@ -1,3 +1,8 @@
+2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
+       ALLOCATE_CPLUS_STRUCT_TYPE.
+
 2010-06-28  Phil Muldoon  <pmuldoon@redhat.com>
             Tom Tromey  <tromey@redhat.com>
             Thiago Jung Bauermann  <bauerman@br.ibm.com>
@@ -27,8 +32,6 @@
        * python/py-inferior.c: New File.
        * python/py-infthread.c: New File.
 
-
-
 2010-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * c-typeprint.c (c_type_print_base): For no fields check include also
index 7febcab..d521ccd 100644 (file)
@@ -5327,6 +5327,7 @@ read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
        {
          int i = fi.typedef_field_list_count;
 
+         ALLOCATE_CPLUS_STRUCT_TYPE (type);
          TYPE_TYPEDEF_FIELD_ARRAY (type)
            = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
          TYPE_TYPEDEF_FIELD_COUNT (type) = i;