summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-05-12 21:29:42 +0000
committerDevang Patel <dpatel@apple.com>2011-05-12 21:29:42 +0000
commit201e6cdc39d5dca4e70cdd331f6f5055b3af3534 (patch)
tree3ac8cff4b5ddd607c02d87fe302934914fd7f57e /lib/Support
parent757a142ea845ee44cc9340063bbc2f992e8c4232 (diff)
downloadllvm-201e6cdc39d5dca4e70cdd331f6f5055b3af3534.tar.gz
llvm-201e6cdc39d5dca4e70cdd331f6f5055b3af3534.tar.bz2
llvm-201e6cdc39d5dca4e70cdd331f6f5055b3af3534.tar.xz
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/Dwarf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp
index cbf8aad5f2..0813321b6f 100644
--- a/lib/Support/Dwarf.cpp
+++ b/lib/Support/Dwarf.cpp
@@ -207,7 +207,7 @@ const char *llvm::dwarf::AttributeString(unsigned Attribute) {
case DW_AT_APPLE_property_getter: return "DW_AT_APPLE_property_getter";
case DW_AT_APPLE_property_setter: return "DW_AT_APPLE_property_setter";
case DW_AT_APPLE_property_attribute: return "DW_AT_APPLE_property_attribute";
- case DW_AT_APPLE_objc_class_extension: return "DW_AT_APPLE_objc_class_extension";
+ case DW_AT_APPLE_objc_complete_type: return "DW_AT_APPLE_objc_complete_type";
}
return 0;
}