forked from OSchip/llvm-project
Fix clang-cl Driver leak
We were synthesizing new arguments from e.g. '/Tcfile.c' arguments, but didn't handle ownership correctly. llvm-svn: 207880
This commit is contained in:
parent
fb4e3f2f4e
commit
55362851a9
|
@ -259,7 +259,7 @@ public:
|
|||
/// \param Args - The input arguments.
|
||||
/// \param Inputs - The list to store the resulting compilation
|
||||
/// inputs onto.
|
||||
void BuildInputs(const ToolChain &TC, const llvm::opt::DerivedArgList &Args,
|
||||
void BuildInputs(const ToolChain &TC, llvm::opt::DerivedArgList &Args,
|
||||
InputList &Inputs) const;
|
||||
|
||||
/// BuildActions - Construct the list of actions to perform for the
|
||||
|
|
|
@ -190,10 +190,11 @@ const {
|
|||
return FinalPhase;
|
||||
}
|
||||
|
||||
static Arg* MakeInputArg(const DerivedArgList &Args, OptTable *Opts,
|
||||
static Arg* MakeInputArg(DerivedArgList &Args, OptTable *Opts,
|
||||
StringRef Value) {
|
||||
Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value,
|
||||
Args.getBaseArgs().MakeIndex(Value), Value.data());
|
||||
Args.AddSynthesizedArg(A);
|
||||
A->claim();
|
||||
return A;
|
||||
}
|
||||
|
@ -956,7 +957,7 @@ static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args,
|
|||
}
|
||||
|
||||
// Construct a the list of inputs and their types.
|
||||
void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args,
|
||||
void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args,
|
||||
InputList &Inputs) const {
|
||||
// Track the current user specified (-x) input. We also explicitly track the
|
||||
// argument used to set the type; we only want to claim the type when we
|
||||
|
|
Loading…
Reference in New Issue