[driver] Removed the limited support for -module-source-list.

This option was never honored, and the main functionality that this option
would have implemented has been subsumed by -output-file-map.

Swift SVN r12800
This commit is contained in:
Connor Wakamo
2014-01-22 22:37:21 +00:00
parent b782bd4c56
commit 947f3be6e7
4 changed files with 0 additions and 21 deletions

View File

@@ -148,13 +148,6 @@ public:
return FrontendOpts.SerializedDiagnosticsPath;
}
void setModuleSourceListPath(StringRef Path) {
FrontendOpts.ModuleSourceListPath = Path;
}
StringRef getModuleSourceListPath() const {
return FrontendOpts.ModuleSourceListPath;
}
LangOptions &getLangOptions() {
return LangOpts;
}

View File

@@ -119,10 +119,6 @@ public:
/// (if asked to emit SIL).
bool EmitVerboseSIL = false;
/// Path to a "module source list", which lists all files in the module.
/// Currently unused.
std::string ModuleSourceListPath;
/// Path to a file which should contain serialized diagnostics for this
/// frontend invocation.
std::string SerializedDiagnosticsPath;