From b036f1c98caf4742aa8e66a4831841d635e3f008 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 3 Feb 2015 21:08:33 +0000 Subject: Support: Stop stringifying DW_TAG_{lo,hi}_user `dwarf::TagString()` shouldn't stringify `DW_TAG_lo_user` or `DW_TAG_hi_user`. These aren't actual tags; they're markers for the edge of vendor-specific tag regions. llvm-svn: 228029 --- llvm/lib/Support/Dwarf.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'llvm/lib/Support/Dwarf.cpp') diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 4b6337ecc52..2101037e714 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -76,8 +76,6 @@ const char *llvm::dwarf::TagString(unsigned Tag) { case DW_TAG_imported_unit: return "DW_TAG_imported_unit"; case DW_TAG_condition: return "DW_TAG_condition"; case DW_TAG_shared_type: return "DW_TAG_shared_type"; - case DW_TAG_lo_user: return "DW_TAG_lo_user"; - case DW_TAG_hi_user: return "DW_TAG_hi_user"; case DW_TAG_auto_variable: return "DW_TAG_auto_variable"; case DW_TAG_arg_variable: return "DW_TAG_arg_variable"; case DW_TAG_expression: return "DW_TAG_expression"; -- cgit v1.2.3