diff options
author | Steve Naroff <snaroff@apple.com> | 2009-01-14 07:06:32 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-01-14 07:06:32 +0000 |
commit | be63802d1efe52697f49aafea49a5028b30b0aff (patch) | |
tree | 704badcd6b28762107bf1696d4cb61ff76f84c7b | |
parent | 82fbac54624e752bc45364bb850e2f673ff7ebe1 (diff) |
Add a FIXME.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62214 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index 9c4eb61f94..ec48971aeb 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -75,6 +75,9 @@ class ASTContext { llvm::DenseMap<const ObjCInterfaceDecl*, const ASTRecordLayout*> ASTObjCInterfaces; + // FIXME: Shouldn't ASTRecordForInterface/ASTFieldForIvarRef and + // addRecordToClass/getFieldDecl be part of the backend (i.e. CodeGenTypes and + // CodeGenFunction)? llvm::DenseMap<const ObjCInterfaceDecl*, const RecordDecl*> ASTRecordForInterface; llvm::DenseMap<const ObjCIvarRefExpr*, const FieldDecl*> ASTFieldForIvarRef; |