diff options
author | Eric Christopher <echristo@apple.com> | 2012-03-29 21:35:05 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-03-29 21:35:05 +0000 |
commit | c13fd6d1e1095b00fe0074663434856d7f910fa1 (patch) | |
tree | 163582922bb9e16a37cbcb8e716870e4556cdb8a /llvm/lib/Support/Dwarf.cpp | |
parent | 0b0298302cf606b12564fcc178181e564b066509 (diff) | |
download | bcm5719-llvm-c13fd6d1e1095b00fe0074663434856d7f910fa1.tar.gz bcm5719-llvm-c13fd6d1e1095b00fe0074663434856d7f910fa1.zip |
Lowercase the tag name to match the rest of dwarf.
llvm-svn: 153691
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 b317e4927d1..5c59a3ef8ef 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/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; } |