Skip to content

Commit

Permalink
[clang] Fix warning about unused variable [NFC]
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelholmen committed Jan 4, 2022
1 parent 9fb4e79 commit 304d30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/lib/Driver/ToolChains/Clang.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down

0 comments on commit 304d30b

Please sign in to comment.