From: Gabriel Corona Date: Tue, 18 Nov 2014 09:46:19 +0000 (+0100) Subject: [mc] Remove reference to DW_TAG_mutable_type: X-Git-Tag: v3_12~732^2~204 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/58a75cbb936bea3605621a7d38e2447ed8866011 [mc] Remove reference to DW_TAG_mutable_type: Is was in a DWARFv3 draft but was removed from the final version: it was removed from libdw which breaks compilation. --- diff --git a/src/mc/mc_dwarf.c b/src/mc/mc_dwarf.c index a5b02e7939..eabe5afd98 100644 --- a/src/mc/mc_dwarf.c +++ b/src/mc/mc_dwarf.c @@ -159,7 +159,6 @@ static mc_tag_class MC_dwarf_tag_classify(int tag) case DW_TAG_restrict_type: case DW_TAG_interface_type: case DW_TAG_unspecified_type: - case DW_TAG_mutable_type: case DW_TAG_shared_type: return mc_tag_type; diff --git a/src/mc/mc_dwarf_tagnames.h b/src/mc/mc_dwarf_tagnames.h index e87aec4a56..5be001b9eb 100644 --- a/src/mc/mc_dwarf_tagnames.h +++ b/src/mc/mc_dwarf_tagnames.h @@ -59,7 +59,6 @@ case 0x3a: return "DW_TAG_imported_module"; case 0x3b: return "DW_TAG_unspecified_type"; case 0x3c: return "DW_TAG_partial_unit"; case 0x3d: return "DW_TAG_imported_unit"; -case 0x3e: return "DW_TAG_mutable_type"; case 0x3f: return "DW_TAG_condition"; case 0x40: return "DW_TAG_shared_type"; case 0x41: return "DW_TAG_type_unit";