Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:Opt

39   extern cl::opt<std::string> OutputPrefix;
45 cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
76 // telling the user how to reproduce it: opt -foo blah.bc
88 outs() << "opt " << Filename;
95 cl::opt<bool> SilencePasses("silence-passes",
98 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
99 cl::desc("<opt arguments>..."),
151 sys::Path tool = sys::Program::FindProgramByName("opt");
153 errs() << "Cannot find `opt' in PATH!\n";
157 // Ok, everything that could go wrong before running opt is done.
162 std::string Opt = tool.str();
169 Args.push_back(Opt.c_str());