[clang] Fix warning about unused variable [NFC]

This commit is contained in:
Mikael Holmen 2022-01-04 07:28:16 +01:00
parent 9fb4e79d06
commit 304d30bc59

View File

@ -1929,7 +1929,7 @@ void Clang::AddMIPSTargetArgs(const ArgList &Args,
}
}
if (Arg *A = Args.getLastArg(options::OPT_mfix4300)) {
if (Args.getLastArg(options::OPT_mfix4300)) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-mfix4300");
}