X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3a2217b5c973d5a79c43d555162d2d516aa2631..0f86d3285f605e43ba3f845eb2f5ee2502b2aed4:/src/mc/mc_object_info.cpp diff --git a/src/mc/mc_object_info.cpp b/src/mc/mc_object_info.cpp index 6034269268..7324681e74 100644 --- a/src/mc/mc_object_info.cpp +++ b/src/mc/mc_object_info.cpp @@ -35,6 +35,7 @@ Type::Type() this->byte_size = 0; this->element_count = 0; this->is_pointer_type = 0; + this->type_id = 0; this->subtype = nullptr; this->full_type = nullptr; } @@ -46,6 +47,7 @@ Variable::Variable() this->dwarf_offset = 0; this->global = 0; this->type = nullptr; + this->type_id = 0; this->address = nullptr; this->start_scope = 0; this->object_info = nullptr; @@ -78,8 +80,6 @@ ObjectInformation::ObjectInformation() this->start_ro = nullptr; this->end_ro = nullptr; this->subprograms = xbt_dict_new_homogeneous(mc_frame_free); - this->types = xbt_dict_new_homogeneous((void (*)(void *)) mc_type_free); - this->full_types_by_name = xbt_dict_new_homogeneous(NULL); this->functions_index = nullptr; } @@ -87,8 +87,6 @@ ObjectInformation::~ObjectInformation() { xbt_free(this->file_name); xbt_dict_free(&this->subprograms); - xbt_dict_free(&this->types); - xbt_dict_free(&this->full_types_by_name); xbt_dynar_free(&this->functions_index); }