diff options
author | Devang Patel <dpatel@apple.com> | 2012-02-04 00:59:25 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2012-02-04 00:59:25 +0000 |
commit | 1ea02d467a311b4846b942377d0b00fde987be65 (patch) | |
tree | 92afebc7ef93b63205b67f9ffd8460a7483e6cb2 /lib/Analysis/DebugInfo.cpp | |
parent | 2f2d1d7ec0a0178c76c29a13ab39d3f33d9b097b (diff) |
Introduce DIObjCProperty. This will be used to encode objective-c property.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149732 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DebugInfo.cpp')
-rw-r--r-- | lib/Analysis/DebugInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index f925b5ca43..a2d2c5f580 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -289,6 +289,10 @@ bool DIDescriptor::isEnumerator() const { return DbgNode && getTag() == dwarf::DW_TAG_enumerator; } +/// isObjCProperty - Return true if the specified tag is DW_TAG +bool DIDescriptor::isObjCProperty() const { + return DbgNode && getTag() == dwarf::DW_TAG_APPLE_Property; +} //===----------------------------------------------------------------------===// // Simple Descriptor Constructors and other Methods //===----------------------------------------------------------------------===// |