X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FMC%2FMCTargetOptionsCommandFlags.h;h=17a117a2a3bd11bc0a4ce0a62996ded53e89cd2f;hb=d1b5bdaebdcdfc85854e6dac538bcc273b6a486a;hp=55ac14215724efaa099f15eddd238000751cd210;hpb=4f6d26dbe89d51362b665fe8fb0f206434e52471;p=oota-llvm.git diff --git a/include/llvm/MC/MCTargetOptionsCommandFlags.h b/include/llvm/MC/MCTargetOptionsCommandFlags.h index 55ac1421572..17a117a2a3b 100644 --- a/include/llvm/MC/MCTargetOptionsCommandFlags.h +++ b/include/llvm/MC/MCTargetOptionsCommandFlags.h @@ -33,34 +33,11 @@ cl::opt RelaxAll("mc-relax-all", cl::desc("When used with filetype=obj, " "relax all fixups in the emitted object file")); -cl::opt EnableDwarfDirectory( - "enable-dwarf-directory", cl::Hidden, - cl::desc("Use .file directives with an explicit directory.")); - -cl::opt NoExecStack("mc-no-exec-stack", - cl::desc("File doesn't need an exec stack")); - -cl::opt SaveTempLabels("L", cl::desc("Don't discard temporary labels")); - -cl::opt ShowMCEncoding("show-mc-encoding", cl::Hidden, - cl::desc("Show encoding in .s output")); -cl::opt ShowMCInst("show-mc-inst", cl::Hidden, - cl::desc("Show instruction structure in .s output")); - -cl::opt AsmVerbose("asm-verbose", cl::desc("Add comments to directives."), - cl::init(false)); - static inline MCTargetOptions InitMCTargetOptionsFromFlags() { MCTargetOptions Options; Options.SanitizeAddress = (AsmInstrumentation == MCTargetOptions::AsmInstrumentationAddress); Options.MCRelaxAll = RelaxAll; - Options.MCUseDwarfDirectory = EnableDwarfDirectory; - Options.MCNoExecStack = NoExecStack; - Options.MCSaveTempLabels = SaveTempLabels; - Options.ShowMCEncoding = ShowMCEncoding; - Options.ShowMCInst = ShowMCInst; - Options.AsmVerbose = AsmVerbose; return Options; }