diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-12-22 10:23:23 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-12-22 10:23:23 +0000 |
commit | 2151e63c7106646bc2f115c7139196f8069e1bb6 (patch) | |
tree | f52242e34cce81c147ba629052b9220e7bbce3cc /llvm/lib/Support/Dwarf.cpp | |
parent | fe24a30e38ab2a4764b9b802286a03a02d73390f (diff) | |
download | bcm5719-llvm-2151e63c7106646bc2f115c7139196f8069e1bb6.tar.gz bcm5719-llvm-2151e63c7106646bc2f115c7139196f8069e1bb6.zip |
Dwarf: Fix a copy-paste bug.
This tag isn't emitted by any compiler at the moment. PR18306.
llvm-svn: 197877
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 5dc3f0691c4..6604cc73fae 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/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"; |