diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-05-04 23:46:06 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-05-04 23:46:06 +0000 |
commit | d99b345a1ae77c746ef025e6a050908d69e2c543 (patch) | |
tree | a78f4de8dc0dafc534ec8189e139b1987f3ce56b /lib/Parse/AttributeList.cpp | |
parent | bf63b87ecf1e62ab8871a81325978377c84e1835 (diff) |
Remove experimental attribute 'ns_ownership_make_collectable.'
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70940 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/AttributeList.cpp')
-rw-r--r-- | lib/Parse/AttributeList.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Parse/AttributeList.cpp b/lib/Parse/AttributeList.cpp index c68a5b735b..704d98a07e 100644 --- a/lib/Parse/AttributeList.cpp +++ b/lib/Parse/AttributeList.cpp @@ -151,10 +151,6 @@ AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name) { if (!memcmp(Str, "no_instrument_function", 22)) return AT_no_instrument_function; break; - case 29: - if (!memcmp(Str, "ns_ownership_make_collectable", 29)) - return AT_ns_ownership_make_collectable; - break; } return UnknownAttribute; } |