[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

@@ -111,10 +111,6 @@ static bool ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,
Opts.ParseStdlib = true;
}
if (const Arg *A = Args.getLastArg(OPT_module_source_list)) {
Opts.ModuleSourceListPath = A->getValue();
}
if (const Arg *A = Args.getLastArg(OPT__DASH_DASH)) {
for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
Opts.ImmediateArgv.push_back(A->getValue(i));