aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Dwarf.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-02-03 21:08:33 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-02-03 21:08:33 +0000
commitb036f1c98caf4742aa8e66a4831841d635e3f008 (patch)
tree959075c3510a8465103e12910b7753c0496ae6c7 /llvm/lib/Support/Dwarf.cpp
parent5b67ed496ee74a2ebfc88549cfe23851c9a555d4 (diff)
downloadllvm-b036f1c98caf4742aa8e66a4831841d635e3f008.zip
llvm-b036f1c98caf4742aa8e66a4831841d635e3f008.tar.gz
llvm-b036f1c98caf4742aa8e66a4831841d635e3f008.tar.bz2
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
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r--llvm/lib/Support/Dwarf.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp
index 4b6337e..2101037e 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";