diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-12 18:23:47 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-12 18:23:47 +0000 |
commit | e55cd00d23f0951c29b3b93e6034b2c4b3933a23 (patch) | |
tree | 8bcddb99e5c2558689d04ea613e904ab2139e39f /Parse/ParseObjc.cpp | |
parent | 34947250cea7fa89cfd882a4c5cb51412faa0fee (diff) |
Patch for building method declaration nodes. Also fixed a segfault in cocoa.m due
to use of @property.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Parse/ParseObjc.cpp')
-rw-r--r-- | Parse/ParseObjc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parse/ParseObjc.cpp b/Parse/ParseObjc.cpp index 803fe2f670..7ddcaabb04 100644 --- a/Parse/ParseObjc.cpp +++ b/Parse/ParseObjc.cpp @@ -229,7 +229,7 @@ void Parser::ParseObjCInterfaceDeclList(DeclTy *interfaceDecl) { ConsumeToken(); continue; } else if (ocKind == tok::objc_property) { - ParseObjCPropertyDecl(0/*FIXME*/); + ParseObjCPropertyDecl(interfaceDecl); continue; } else { Diag(Tok, diag::err_objc_illegal_interface_qual); |