Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Args

112 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
172 SmallVector<const char*, 8> Args;
174 Args.push_back("valgrind");
175 Args.push_back("--error-exitcode=1");
176 Args.push_back("-q");
177 Args.push_back(tool.c_str());
179 Args.push_back(tool.c_str());
181 Args.push_back("-o");
182 Args.push_back(OutputFilename.c_str());
184 Args.push_back(OptArgs[i].c_str());
195 Args.push_back(I->c_str());
196 Args.push_back(InputFilename.c_str());
198 Args.push_back(*ExtraArgs);
199 Args.push_back(nullptr);
202 for (unsigned i = 0, e = Args.size()-1; i != e; ++i)
203 errs() << " " << Args[i];
218 int result = sys::ExecuteAndWait(Prog, Args.data(), nullptr,