From: Gabriel Corona Date: Wed, 24 Feb 2016 09:21:59 +0000 (+0100) Subject: [mc] Remove Type::is_pointer_type X-Git-Tag: v3_13~660 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/70b5114623c9bf55be884431d9eb69963b6fd6cb [mc] Remove Type::is_pointer_type --- diff --git a/src/mc/Type.hpp b/src/mc/Type.hpp index 5a6a2adb0e..31ad63ffef 100644 --- a/src/mc/Type.hpp +++ b/src/mc/Type.hpp @@ -72,7 +72,6 @@ public: int element_count = 0; /* Number of elements for array type */ unsigned type_id = 0; /* DW_AT_type id */ std::vector members; /* if DW_TAG_structure_type, DW_TAG_class_type, DW_TAG_union_type*/ - int is_pointer_type = 0; simgrid::mc::Type* subtype = nullptr; // DW_AT_type simgrid::mc::Type* full_type = nullptr; // The same (but more complete) type diff --git a/src/mc/mc_dwarf.cpp b/src/mc/mc_dwarf.cpp index a9017d408c..740506a59a 100644 --- a/src/mc/mc_dwarf.cpp +++ b/src/mc/mc_dwarf.cpp @@ -666,7 +666,6 @@ static simgrid::mc::Type MC_dwarf_die_to_type( case DW_TAG_pointer_type: case DW_TAG_reference_type: case DW_TAG_rvalue_reference_type: - type.is_pointer_type = 1; break; case DW_TAG_structure_type: