Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Args

95 static cl::list<std::string> OptArgs("opt-args", cl::Positional,

159 SmallVector<const char*, 8> Args;
162 Args.push_back("valgrind");
163 Args.push_back("--error-exitcode=1");
164 Args.push_back("-q");
165 Args.push_back(tool.c_str());
167 Args.push_back(Opt.c_str());
169 Args.push_back("-o");
170 Args.push_back(OutputFilename.c_str());
172 Args.push_back(OptArgs[i].c_str());
183 Args.push_back(I->c_str());
184 Args.push_back(inputFilename.c_str());
186 Args.push_back(*ExtraArgs);
187 Args.push_back(0);
190 for (unsigned i = 0, e = Args.size()-1; i != e; ++i)
191 errs() << " " << Args[i];
205 int result = sys::Program::ExecuteAndWait(prog, Args.data(), 0,