[Frontend] In CompilerInvocation::parseArgs() handle the input filenames as well.

Swift SVN r10013
This commit is contained in:
Argyrios Kyrtzidis
2013-11-07 00:51:54 +00:00
parent 1568c54160
commit 5183cec03d

View File

@@ -127,6 +127,10 @@ bool CompilerInvocation::parseArgs(ArrayRef<const char *> Args,
case OPT_link_library:
addLinkLibrary(InputArg->getValue(), LibraryKind::Library);
break;
case OPT_INPUT:
addInputFilename(InputArg->getValue());
break;
}
}