Home | History | Annotate | Download | only in llvm-link

Lines Matching refs:cl

32 static cl::list<std::string>
33 InputFilenames(cl::Positional, cl::OneOrMore,
34 cl::desc("<input bitcode files>"));
36 static cl::opt<std::string>
37 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
38 cl::value_desc("filename"));
40 static cl::opt<bool>
41 Force("f", cl::desc("Enable binary output on terminals"));
43 static cl::opt<bool>
45 cl::desc("Write output as LLVM assembly"), cl::Hidden);
47 static cl::opt<bool>
48 Verbose("v", cl::desc("Print information about actions taken"));
50 static cl::opt<bool>
51 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
76 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");