Commit 7af53d75 authored by Raphael Isemann's avatar Raphael Isemann
Browse files

[lldb][NFC] Fix LLDB build after ModuleManager->ASTReader rename

That happened in 20d51b2f but LLDB wasn't updated.
parent 0010ea42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -974,7 +974,7 @@ ClangExpressionParser::ParseInternal(DiagnosticManager &diagnostic_manager,
  m_compiler->setASTConsumer(std::move(Consumer));

  if (ast_context.getLangOpts().Modules) {
    m_compiler->createModuleManager();
    m_compiler->createASTReader();
    m_ast_context->setSema(&m_compiler->getSema());
  }

+1 −1
Original line number Diff line number Diff line
@@ -704,7 +704,7 @@ ClangModulesDeclVendor::Create(Target &target) {

  instance->getPreprocessor().enableIncrementalProcessing();

  instance->createModuleManager();
  instance->createASTReader();

  instance->createSema(action->getTranslationUnitKind(), nullptr);