Home | History | Annotate | Download | only in MC

Lines Matching refs:cl

22 cl::opt<MCTargetOptions::AsmInstrumentation> AsmInstrumentation(
23 "asm-instrumentation", cl::desc("Instrumentation of inline assembly and "
25 cl::init(MCTargetOptions::AsmInstrumentationNone),
26 cl::values(clEnumValN(MCTargetOptions::AsmInstrumentationNone, "none",
31 cl::opt<bool> RelaxAll("mc-relax-all",
32 cl::desc("When used with filetype=obj, "
35 cl::opt<bool> IncrementalLinkerCompatible(
37 cl::desc(
41 cl::opt<bool> PIECopyRelocations("pie-copy-relocations", cl::desc("PIE Copy Relocations"));
43 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
44 cl::init(0));
46 cl::opt<bool> ShowMCInst("asm-show-inst",
47 cl::desc("Emit internal instruction representation to "
50 cl::opt<bool> FatalWarnings("fatal-warnings",
51 cl::desc("Treat warnings as errors"));
53 cl::opt<bool> NoWarn("no-warn", cl::desc("Suppress all warnings"));
54 cl::alias NoWarnW("W", cl::desc("Alias for --no-warn"), cl::aliasopt(NoWarn));
56 cl::opt<bool> NoDeprecatedWarn("no-deprecated-warn",
57 cl::desc("Suppress all deprecated warnings"));
59 cl::opt<std::string>
60 ABIName("target-abi", cl::Hidden,
61 cl::desc("The name of the ABI to be targeted from the backend."),
62 cl::init(""));