diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-03-27 17:50:12 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-03-27 17:50:12 +0000 |
commit | 986d7049cd4f0f7bba5ee567b5b3bc45f4d31fc1 (patch) | |
tree | 69d9f9fc1c701366bf9394470d178aff332d5591 /llvm/lib/IR | |
parent | 551262d7c066043dc258a95ad18289bd765ebebb (diff) | |
download | bcm5719-llvm-986d7049cd4f0f7bba5ee567b5b3bc45f4d31fc1.tar.gz bcm5719-llvm-986d7049cd4f0f7bba5ee567b5b3bc45f4d31fc1.zip |
Fix comment
llvm-svn: 178155
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r-- | llvm/lib/IR/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index f703bd2f7a6..a1d18e1f93a 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -333,7 +333,7 @@ bool DIDescriptor::isEnumerator() const { return DbgNode && getTag() == dwarf::DW_TAG_enumerator; } -/// isObjCProperty - Return true if the specified tag is DW_TAG +/// isObjCProperty - Return true if the specified tag is DW_TAG_APPLE_property. bool DIDescriptor::isObjCProperty() const { return DbgNode && getTag() == dwarf::DW_TAG_APPLE_property; } |