Frontend: remove -swift-module-file. NFC

We are now using a JSON file for explicit module inputs, so this argument can be removed.
This commit is contained in:
Xi Ge
2021-07-30 15:22:30 -07:00
parent d747ee97c1
commit 3fd5cd1fe4
7 changed files with 0 additions and 44 deletions

View File

@@ -161,7 +161,6 @@ public:
static std::unique_ptr<ExplicitSwiftModuleLoader>
create(ASTContext &ctx,
DependencyTracker *tracker, ModuleLoadingMode loadMode,
ArrayRef<std::string> ExplicitModulePaths,
StringRef ExplicitSwiftModuleMap,
bool IgnoreSwiftSourceInfoFile);
@@ -180,8 +179,6 @@ struct ExplicitModuleInfo {
std::string moduleDocPath;
// Path of the .swiftsourceinfo file.
std::string moduleSourceInfoPath;
// Opened buffer for the .swiftmodule file.
std::unique_ptr<llvm::MemoryBuffer> moduleBuffer;
// A flag that indicates whether this module is a framework
bool isFramework;
};