[Lldb-commits] [lldb] r201671 - Track Clang virtualFileSystem change (r201618)

Ed Maste emaste at freebsd.org
Wed Feb 19 05:00:08 PST 2014


Author: emaste
Date: Wed Feb 19 07:00:08 2014
New Revision: 201671

URL: http://llvm.org/viewvc/llvm-project?rev=201671&view=rev
Log:
Track Clang virtualFileSystem change (r201618)

Clang now requires calling CompilerInstance::createVirtualFileSystem
before CompilerInstance::createFileManager.

Modified:
    lldb/trunk/source/Expression/ClangExpressionParser.cpp

Modified: lldb/trunk/source/Expression/ClangExpressionParser.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangExpressionParser.cpp?rev=201671&r1=201670&r2=201671&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Wed Feb 19 07:00:08 2014
@@ -336,6 +336,7 @@ ClangExpressionParser::ClangExpressionPa
     if (!m_compiler->hasSourceManager())
         m_compiler->createSourceManager(*m_file_manager.get());
     
+    m_compiler->createVirtualFileSystem();
     m_compiler->createFileManager();
     m_compiler->createPreprocessor();
     





More information about the lldb-commits mailing list