diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-04-05 18:10:21 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-04-05 18:10:21 +0000 |
| commit | a2433154c890418ebd854e2272af6db974db608c (patch) | |
| tree | 3a3d4d6bad76d862f2b680fcc956b596a1a2145b /clang/lib/Frontend | |
| parent | 6e39c4a09784b2cdd4190de5d65429a9bcb0e597 (diff) | |
| download | bcm5719-llvm-a2433154c890418ebd854e2272af6db974db608c.tar.gz bcm5719-llvm-a2433154c890418ebd854e2272af6db974db608c.zip | |
Minor ASTUnit cleanups:
- Rename "Diagnostics" and related to "StoredDiagnostics", to better
capture what we're actually storing.
- Move SourceManager and FileManager to the heap.
llvm-svn: 100441
Diffstat (limited to 'clang/lib/Frontend')
| -rw-r--r-- | clang/lib/Frontend/ASTUnit.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/clang/lib/Frontend/ASTUnit.cpp b/clang/lib/Frontend/ASTUnit.cpp index 7243f709cc6..38aeedc39ad 100644 --- a/clang/lib/Frontend/ASTUnit.cpp +++ b/clang/lib/Frontend/ASTUnit.cpp @@ -36,8 +36,10 @@ using namespace clang; ASTUnit::ASTUnit(Diagnostic &Diag, bool _MainFileIsAST) - : SourceMgr(Diag), MainFileIsAST(_MainFileIsAST), + : MainFileIsAST(_MainFileIsAST), ConcurrencyCheckValue(CheckUnlocked) { + FileMgr.reset(new FileManager); + SourceMgr.reset(new SourceManager(Diag)); } ASTUnit::~ASTUnit() { ConcurrencyCheckValue = CheckLocked; @@ -153,7 +155,7 @@ ASTUnit *ASTUnit::LoadFromPCHFile(const std::string &Filename, // If requested, capture diagnostics in the ASTUnit. CaptureDroppedDiagnostics Capture(CaptureDiagnostics, Diags, - AST->Diagnostics); + AST->StoredDiagnostics); for (unsigned I = 0; I != NumRemappedFiles; ++I) { // Create the file entry for the file that we're mapping from. @@ -317,7 +319,7 @@ ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI, // Capture any diagnostics that would otherwise be dropped. CaptureDroppedDiagnostics Capture(CaptureDiagnostics, Clang.getDiagnostics(), - AST->Diagnostics); + AST->StoredDiagnostics); // Create a file manager object to provide access to and cache the filesystem. Clang.setFileManager(&AST->getFileManager()); |

