diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-03-16 00:35:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-03-16 00:35:39 +0000 |
commit | 36c35ba0aca641e60e5dbee8efbc620c08b9bd61 (patch) | |
tree | cadd5c4b1bbe39cc1d5e07b4f1940a3d2431a31e /lib/Lex/PPLexerChange.cpp | |
parent | f715ca12bfc9fddfde75f98a197424434428b821 (diff) |
Use SourceManager's Diagnostic object for all file-reading errors,
simplifying the SourceManager interfaces somewhat.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98598 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/PPLexerChange.cpp')
-rw-r--r-- | lib/Lex/PPLexerChange.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Lex/PPLexerChange.cpp b/lib/Lex/PPLexerChange.cpp index 4fba7b7bee..81e6bf8090 100644 --- a/lib/Lex/PPLexerChange.cpp +++ b/lib/Lex/PPLexerChange.cpp @@ -80,8 +80,7 @@ bool Preprocessor::EnterSourceFile(FileID FID, const DirectoryLookup *CurDir, } // Get the MemoryBuffer for this FID, if it fails, we fail. - const llvm::MemoryBuffer *InputFile - = getSourceManager().getBuffer(FID).getBuffer(getDiagnostics()); + const llvm::MemoryBuffer *InputFile = getSourceManager().getBuffer(FID); if (!InputFile) return true; |