diff options
-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; |