diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-02-17 02:37:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-02-17 02:37:45 +0000 |
commit | efbddd23173ea5633cc8a004f1014c68c3ac6593 (patch) | |
tree | 90d3a87eab7cd5059cbb4904cc5cf4fd586cd874 /lib/Frontend/PCHReaderDecl.cpp | |
parent | a446ecd13a9cd2c150baa5d3db4f817db4b1eba8 (diff) |
Add IBAction attribute to keep the IBOutlet attribute company.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReaderDecl.cpp')
-rw-r--r-- | lib/Frontend/PCHReaderDecl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReaderDecl.cpp b/lib/Frontend/PCHReaderDecl.cpp index 625997cac2..f47a60f260 100644 --- a/lib/Frontend/PCHReaderDecl.cpp +++ b/lib/Frontend/PCHReaderDecl.cpp @@ -517,6 +517,10 @@ Attr *PCHReader::ReadAttributes() { SIMPLE_ATTR(GNUInline); SIMPLE_ATTR(Hiding); + case Attr::IBActionKind: + New = ::new (*Context) IBActionAttr(); + break; + case Attr::IBOutletKind: New = ::new (*Context) IBOutletAttr(); break; |