Skip to content

Commit dbf7d18

Browse files
authored
Merge pull request #1465 from artemcm/SMLRename
Rename SerializedModuleLoader to match Swift compiler's new API.
2 parents e966de2 + 1436b37 commit dbf7d18

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
@@ -3337,7 +3337,7 @@ swift::ASTContext *SwiftASTContext::GetASTContext() {
33373337

33383338
// 3. Create and install the serialized module loader.
33393339
std::unique_ptr<swift::ModuleLoader> serialized_module_loader_ap(
3340-
swift::SerializedModuleLoader::create(
3340+
swift::ImplicitSerializedModuleLoader::create(
33413341
*m_ast_context_ap, m_dependency_tracker.get(), loading_mode));
33423342
if (serialized_module_loader_ap)
33433343
m_ast_context_ap->addModuleLoader(std::move(serialized_module_loader_ap));

0 commit comments

Comments
 (0)