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/Analysis/DIBuilder.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/Analysis/DIBuilder.cpp')
-rw-r--r-- | llvm/lib/Analysis/DIBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DIBuilder.cpp b/llvm/lib/Analysis/DIBuilder.cpp index ddf57f84a86..4dc8f6a1ecc 100644 --- a/llvm/lib/Analysis/DIBuilder.cpp +++ b/llvm/lib/Analysis/DIBuilder.cpp @@ -392,7 +392,7 @@ DIObjCProperty DIBuilder::createObjCProperty(StringRef Name, unsigned PropertyAttributes, DIType Ty) { Value *Elts[] = { - GetTagConstant(VMContext, dwarf::DW_TAG_APPLE_Property), + GetTagConstant(VMContext, dwarf::DW_TAG_APPLE_property), MDString::get(VMContext, Name), File, ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber), |