diff options
author | Steve Naroff <snaroff@apple.com> | 2008-04-01 23:04:06 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-04-01 23:04:06 +0000 |
commit | e8043c39176e7f253fbd92982b077eca6bf2fd59 (patch) | |
tree | cbe701153dbc386ac1156afefcf9a1f6ba2c992d /lib/AST/Decl.cpp | |
parent | a6fb4e07ed2e9145596490240faa1eebff5a53c0 (diff) |
Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl).
- Added a DenseMap to associate an IdentifierInfo with the ObjCCompatibleAliasDecl.
- Renamed LookupScopedDecl->LookupDecl and changed it's return type to Decl. Also added lookup for ObjCCompatibleAliasDecl's.
- Removed Sema::LookupInterfaceDecl(). Converted clients to used LookupDecl().
- Some minor indentation changes.
Will deal with ObjCInterfaceDecl and getObjCInterfaceDecl() in a separate commit...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index bad65cf84c..4c8f6b86b7 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -343,10 +343,6 @@ bool ScopedDecl::isDefinedOutsideFunctionOrMethod() const { if (isa<FunctionDecl>(this)) return true; - // FIXME: Why is ObjCCompatibleAlias a scopedecl? - if (isa<ObjCCompatibleAliasDecl>(this)) - return true; - // FIXME: This needs to check the context the decl was defined in! if (isa<TypeDecl>(this) || isa<EnumConstantDecl>(this)) return true; |