summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-01-12 00:18:35 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-01-12 00:18:35 +0000
commit4f8cb1e83a0f17d17aac25bb041d195d158bd08b (patch)
tree693d545abaac7e8256ed258211ec9bb18b08da26 /clang/lib/Sema/SemaDecl.cpp
parentf88480363e3f3c5d635eef2e7b52dc29f56351d0 (diff)
downloadbcm5719-llvm-4f8cb1e83a0f17d17aac25bb041d195d158bd08b.tar.gz
bcm5719-llvm-4f8cb1e83a0f17d17aac25bb041d195d158bd08b.zip
objective-c: fixes a regression in looking up names
in class extensions and categories by recent refactoring of objc class ASTs. // rdar://1066654 llvm-svn: 147982
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r--clang/lib/Sema/SemaDecl.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index f30f1fa5be6..dc8d6ec8cf7 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -1255,8 +1255,11 @@ ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
Id = IDecl->getIdentifier();
}
}
-
- return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
+ ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
+ // This routine must always return a class definition, if any.
+ if (Def && Def->getDefinition())
+ Def = Def->getDefinition();
+ return Def;
}
/// getNonFieldDeclScope - Retrieves the innermost scope, starting
OpenPOWER on IntegriCloud