From 39b49bcaaddb1049234fca9500c0ac02c088e23d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 23 Nov 2010 08:35:12 +0000 Subject: now the FileManager has a FileSystemOpts ivar, stop threading FileSystemOpts through a ton of apis, simplifying a lot of code. This also fixes a latent bug in ASTUnit where it would invoke methods on FileManager without creating one in some code paths in cindextext. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120010 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Frontend/FrontendActions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/Frontend/FrontendActions.cpp') diff --git a/lib/Frontend/FrontendActions.cpp b/lib/Frontend/FrontendActions.cpp index 9ef1ca64d7..d18baaa7e1 100644 --- a/lib/Frontend/FrontendActions.cpp +++ b/lib/Frontend/FrontendActions.cpp @@ -209,8 +209,7 @@ void PrintPreambleAction::ExecuteAction() { CompilerInstance &CI = getCompilerInstance(); llvm::MemoryBuffer *Buffer - = CI.getFileManager().getBufferForFile(getCurrentFile(), - CI.getFileSystemOpts()); + = CI.getFileManager().getBufferForFile(getCurrentFile()); if (Buffer) { unsigned Preamble = Lexer::ComputePreamble(Buffer).first; llvm::outs().write(Buffer->getBufferStart(), Preamble); -- cgit v1.2.3-18-g5258