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

Lines Matching refs:cl

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