Lines Matching refs:opt
40 extern cl::opt<std::string> OutputPrefix;
46 cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
47 cl::opt<std::string> OptCmd("opt-command", cl::init(""),
48 cl::desc("Path to opt. (default: search path "
49 "for 'opt'.)"));
88 // telling the user how to reproduce it: opt -foo blah.bc
100 outs() << "opt " << Filename;
107 cl::opt<bool> SilencePasses("silence-passes",
110 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
111 cl::desc("<opt arguments>..."),
160 std::string tool = OptCmd.empty()? sys::FindProgramByName("opt") : OptCmd;
162 errs() << "Cannot find `opt' in PATH!\n";
166 // Ok, everything that could go wrong before running opt is done.