diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-12 19:06:16 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-12 19:06:16 +0000 |
commit | 2409e7843b714c83570c537a12f41fbe99c2e165 (patch) | |
tree | e80fcdaae0e9d754e4793f614a11fa0617d02844 /llvm/lib/Support/Dwarf.cpp | |
parent | e106c3481784ecfda9cb014cb2cfea5b3d13bbc9 (diff) | |
download | bcm5719-llvm-2409e7843b714c83570c537a12f41fbe99c2e165.tar.gz bcm5719-llvm-2409e7843b714c83570c537a12f41fbe99c2e165.zip |
Let Objective-C front-end identify class extension, in dwarf output, using an attribute DW_AT_APPLE_objc_class_extension.
llvm-svn: 131238
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 74a9fda7ab6..cbf8aad5f22 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -207,6 +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"; } return 0; } |