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 | 354504320b4984eebf918bec02dc4c248e0b309b (patch) | |
tree | c1cc41160d359d44f69d1d6b769b3fd7ceb1227b /lib/IR | |
parent | 7fe65d691dcce550d53ec9310913aab67ab6d654 (diff) | |
download | external_llvm-354504320b4984eebf918bec02dc4c248e0b309b.zip external_llvm-354504320b4984eebf918bec02dc4c248e0b309b.tar.gz external_llvm-354504320b4984eebf918bec02dc4c248e0b309b.tar.bz2 |
Fix comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR')
-rw-r--r-- | lib/IR/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index f703bd2..a1d18e1 100644 --- a/lib/IR/DebugInfo.cpp +++ b/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; } |