Remove unused argument.

llvm-svn: 177287
This commit is contained in:
Rafael Espindola
2013-03-18 15:33:26 +00:00
parent f123337275
commit 2f69d405cc
4 changed files with 15 additions and 17 deletions

View File

@@ -38,7 +38,7 @@ Windows::Windows(const Driver &D, const llvm::Triple& Triple)
Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA,
const ActionList &Inputs) const {
Action::ActionClass Key;
if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
if (getDriver().ShouldUseClangCompiler(JA))
Key = Action::AnalyzeJobClass;
else
Key = JA.getKind();