summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/Sema.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-24 21:10:55 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-24 21:10:55 +0000
commitc78d34699fc47e947939d640b5ba215f9018b4fc (patch)
tree13b9bb1e1ba83be3469884750063ce1fd910b94a /clang/lib/Sema/Sema.cpp
parent969bc68195957fffe2f33594d8d9c660795fc56a (diff)
downloadbcm5719-llvm-c78d34699fc47e947939d640b5ba215f9018b4fc.tar.gz
bcm5719-llvm-c78d34699fc47e947939d640b5ba215f9018b4fc.zip
PCH support for the global method pool (= instance and factory method
pools, combined). The methods in the global method pool are lazily loaded from an on-disk hash table when Sema looks into its version of the hash tables. llvm-svn: 69989
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r--clang/lib/Sema/Sema.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp
index 3702c89cf60..367c9f5756b 100644
--- a/clang/lib/Sema/Sema.cpp
+++ b/clang/lib/Sema/Sema.cpp
@@ -163,8 +163,8 @@ void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {
Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
bool CompleteTranslationUnit)
: LangOpts(pp.getLangOptions()), PP(pp), Context(ctxt), Consumer(consumer),
- Diags(PP.getDiagnostics()),
- SourceMgr(PP.getSourceManager()), CurContext(0), PreDeclaratorDC(0),
+ Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()),
+ ExternalSource(0), CurContext(0), PreDeclaratorDC(0),
CurBlock(0), PackContext(0), IdResolver(pp.getLangOptions()),
GlobalNewDeleteDeclared(false),
CompleteTranslationUnit(CompleteTranslationUnit) {
OpenPOWER on IntegriCloud