From d1469e05604df879119d6668d4b5161e460098ca Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sun, 22 Dec 2013 10:23:23 +0000 Subject: [PATCH] Dwarf: Fix a copy-paste bug. This tag isn't emitted by any compiler at the moment. PR18306. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197877 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Dwarf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp index 5dc3f0691c4..6604cc73fae 100644 --- a/lib/Support/Dwarf.cpp +++ b/lib/Support/Dwarf.cpp @@ -86,7 +86,7 @@ const char *llvm::dwarf::TagString(unsigned Tag) { case DW_TAG_template_alias: return "DW_TAG_template_alias"; case DW_TAG_coarray_type: return "DW_TAG_coarray_type"; case DW_TAG_generic_subrange: return "DW_TAG_generic_subrange"; - case DW_TAG_dynamic_type: return "DW_TAG_generic_subrange"; + case DW_TAG_dynamic_type: return "DW_TAG_dynamic_type"; case DW_TAG_MIPS_loop: return "DW_TAG_MIPS_loop"; case DW_TAG_type_unit: return "DW_TAG_type_unit"; case DW_TAG_format_label: return "DW_TAG_format_label"; -- 2.34.1