Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:Args

117 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
196 SmallVector<const char*, 8> Args;
198 Args.push_back("valgrind");
199 Args.push_back("--error-exitcode=1");
200 Args.push_back("-q");
201 Args.push_back(tool.c_str());
203 Args.push_back(tool.c_str());
205 Args.push_back("-o");
206 Args.push_back(OutputFilename.c_str());
208 Args.push_back(OptArgs[i].c_str());
219 Args.push_back(I->c_str());
220 Args.push_back(InputFilename.c_str());
222 Args.push_back(*ExtraArgs);
223 Args.push_back(nullptr);
226 for (unsigned i = 0, e = Args.size()-1; i != e; ++i)
227 errs() << " " << Args[i];
236 int result = sys::ExecuteAndWait(Prog, Args.data(), nullptr,