Lines Matching refs:cl
39 static cl::opt<std::string>
40 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
42 static cl::opt<std::string>
43 OutputFilename("o", cl::desc("Override output filename"),
44 cl::value_desc("filename"));
46 static cl::opt<bool>
47 Force("f", cl::desc("Enable binary output on terminals"));
49 static cl::opt<bool>
50 DisableOutput("disable-output", cl::desc("Disable output"), cl::init(false));
52 static cl::opt<bool>
53 DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden);
55 static cl::opt<bool>
56 DisableVerify("disable-verify", cl::Hidden,
57 cl::desc("Do not run verifier on input LLVM (dangerous!)"));
63 cl::opt<BCVersion> BitcodeVersion("bitcode-version",
64 cl::desc("Set the bitcode version to be written:"),
65 cl::values(
70 clEnumValEnd), cl::init(BC32));
126 cl::ParseCommandLineOptions(argc, argv, "llvm .ll -> .bc assembler\n"); in main()