Skip to content

Commit 321a3c9

Browse files
authored
Merge pull request #1536 from artemcm/swift-master-rebranch
Cherry-Pick: Rename SerializedModuleLoader to match Swift compiler's new API.
2 parents 3c81356 + 74d95a1 commit 321a3c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/include/lldb/Core/SwiftForward.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class NominalType;
4949
class NominalTypeDecl;
5050
class ProtocolDecl;
5151
class SearchPathOptions;
52-
class SerializedModuleLoader;
52+
class ImplicitSerializedModuleLoader;
5353
class ParseableInterfaceModuleLoader;
5454
class SILModule;
5555
class SILOptions;

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3325,7 +3325,7 @@ swift::ASTContext *SwiftASTContext::GetASTContext() {
33253325

33263326
// 3. Create and install the serialized module loader.
33273327
std::unique_ptr<swift::ModuleLoader> serialized_module_loader_ap(
3328-
swift::SerializedModuleLoader::create(
3328+
swift::ImplicitSerializedModuleLoader::create(
33293329
*m_ast_context_ap, m_dependency_tracker.get(), loading_mode));
33303330
if (serialized_module_loader_ap)
33313331
m_ast_context_ap->addModuleLoader(std::move(serialized_module_loader_ap));

0 commit comments

Comments
 (0)