From 58a75cbb936bea3605621a7d38e2447ed8866011 Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Tue, 18 Nov 2014 10:46:19 +0100 Subject: [PATCH] [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. --- src/mc/mc_dwarf.c | 1 - src/mc/mc_dwarf_tagnames.h | 1 - 2 files changed, 2 deletions(-) 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"; -- 2.30.2