aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Dwarf.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-03-29 21:35:05 +0000
committerEric Christopher <echristo@apple.com>2012-03-29 21:35:05 +0000
commit6c31ee2b10827583a0fbcb39623fdfb440c917ef (patch)
tree116e8269f7b917178b8fb753cd9347a839fc54d2 /lib/Support/Dwarf.cpp
parentb22e70d835a88753d3ec6d5ee5e85b23fa6834b1 (diff)
Lowercase the tag name to match the rest of dwarf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Dwarf.cpp')
-rw-r--r--lib/Support/Dwarf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp
index b317e4927d..5c59a3ef8e 100644
--- a/lib/Support/Dwarf.cpp
+++ b/lib/Support/Dwarf.cpp
@@ -95,7 +95,7 @@ const char *llvm::dwarf::TagString(unsigned Tag) {
return "DW_TAG_GNU_template_parameter_pack";
case DW_TAG_GNU_formal_parameter_pack:
return "DW_TAG_GNU_formal_parameter_pack";
- case DW_TAG_APPLE_Property: return "DW_TAG_APPLE_property";
+ case DW_TAG_APPLE_property: return "DW_TAG_APPLE_property";
}
return 0;
}