Lines Matching refs:cl
33 cl::OptionCategory AsCat("llvm-as Options");
35 static cl::opt<std::string> InputFilename(cl::Positional,
36 cl::desc("<input .llvm file>"),
37 cl::init("-"));
39 static cl::opt<std::string> OutputFilename("o",
40 cl::desc("Override output filename"),
41 cl::value_desc("filename"),
42 cl::cat(AsCat));
44 static cl::opt<bool> Force("f", cl::desc("Enable binary output on terminals"),
45 cl::cat(AsCat));
47 static cl::opt<bool> DisableOutput("disable-output", cl::desc("Disable output"),
48 cl::init(false), cl::cat(AsCat));
50 static cl::opt<bool> EmitModuleHash("module-hash", cl::desc("Emit module hash"),
51 cl::init(false), cl::cat(AsCat));
53 static cl::opt<bool> DumpAsm("d", cl::desc("Print assembly as parsed"),
54 cl::Hidden, cl::cat(AsCat));
56 static cl::opt<bool>
57 DisableVerify("disable-verify", cl::Hidden,
58 cl::desc("Do not run verifier on input LLVM (dangerous!)"),
59 cl::cat(AsCat));
61 static cl::opt<bool> PreserveBitcodeUseListOrder(
63 cl::desc("Preserve use-list order when writing LLVM bitcode."),
64 cl::init(true), cl::Hidden, cl::cat(AsCat));
66 static cl::opt<std::string> ClDataLayout("data-layout",
67 cl::desc("data layout string to use"),
68 cl::value_desc("layout-string"),
69 cl::init(""), cl::cat(AsCat));
118 cl::HideUnrelatedOptions(AsCat); in main()
119 cl::ParseCommandLineOptions(argc, argv, "llvm .ll -> .bc assembler\n"); in main()