diff options
| author | Devang Patel <dpatel@apple.com> | 2011-05-12 21:29:42 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2011-05-12 21:29:42 +0000 |
| commit | 12419aee7a7caefb15cae72d7bf99d05e246d924 (patch) | |
| tree | da4c4e7e716be61f88c9f5be7a0080c3b69a0222 /llvm/include | |
| parent | 1b2d526c8bbc5b9a3961f854fa71b59b8bbb8e3b (diff) | |
| download | bcm5719-llvm-12419aee7a7caefb15cae72d7bf99d05e246d924.tar.gz bcm5719-llvm-12419aee7a7caefb15cae72d7bf99d05e246d924.zip | |
Doug convinced me that DW_AT_APPLE_objc_complete_type is more appropriate name.
s/DW_AT_APPLE_objc_class_extension/DW_AT_APPLE_objc_complete_type/g
llvm-svn: 131244
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/Analysis/DebugInfo.h | 6 | ||||
| -rw-r--r-- | llvm/include/llvm/Support/Dwarf.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/Analysis/DebugInfo.h b/llvm/include/llvm/Analysis/DebugInfo.h index a01b5a3a86b..fbee5a6311e 100644 --- a/llvm/include/llvm/Analysis/DebugInfo.h +++ b/llvm/include/llvm/Analysis/DebugInfo.h @@ -58,7 +58,7 @@ namespace llvm { FlagArtificial = 1 << 6, FlagExplicit = 1 << 7, FlagPrototyped = 1 << 8, - FlagObjcClassExtension = 1 << 9 + FlagObjcClassComplete = 1 << 9 }; protected: const MDNode *DbgNode; @@ -272,8 +272,8 @@ namespace llvm { bool isArtificial() const { return (getFlags() & FlagArtificial) != 0; } - bool isObjcClassExtension() const { - return (getFlags() & FlagObjcClassExtension) != 0; + bool isObjcClassComplete() const { + return (getFlags() & FlagObjcClassComplete) != 0; } bool isValid() const { return DbgNode && (isBasicType() || isDerivedType() || isCompositeType()); diff --git a/llvm/include/llvm/Support/Dwarf.h b/llvm/include/llvm/Support/Dwarf.h index 7fecf6f5f0f..70bac0c9fc8 100644 --- a/llvm/include/llvm/Support/Dwarf.h +++ b/llvm/include/llvm/Support/Dwarf.h @@ -235,7 +235,7 @@ enum dwarf_constants { DW_AT_APPLE_property_getter = 0x3fe9, DW_AT_APPLE_property_setter = 0x3fea, DW_AT_APPLE_property_attribute = 0x3feb, - DW_AT_APPLE_objc_class_extension = 0x3fec, + DW_AT_APPLE_objc_complete_type = 0x3fec, // Attribute form encodings DW_FORM_addr = 0x01, |

