diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-05-05 00:46:09 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-05-05 00:46:09 +0000 |
commit | e351aa10dab6eb8b9b502166c7035dc7b0e723e0 (patch) | |
tree | 3d7ef14bcfb75260c8cee6b58b272d062c986897 /lib/Frontend/PCHWriter.cpp | |
parent | a81419d0b53a40399a589a2fcc13f1ed2ec28f75 (diff) |
Implement attribute 'cf_returns_owned' (mirrors 'ns_returns_owned').
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index a1f0cb7f4f..98ed063305 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -1551,6 +1551,7 @@ void PCHWriter::WriteAttributeRecord(const Attr *Attr) { case Attr::ObjCNSObject: case Attr::CFOwnershipRelease: case Attr::CFOwnershipRetain: + case Attr::CFOwnershipReturns: case Attr::NSOwnershipRelease: case Attr::NSOwnershipRetain: case Attr::NSOwnershipReturns: |