From d1b5bdaebdcdfc85854e6dac538bcc273b6a486a Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 21 May 2014 21:05:09 +0000 Subject: Move MCOptions that aren't shared between programs into their specific program and have them initialize the MCOptions struct explicitly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209321 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llc/llc.cpp | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'tools/llc') diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 47be4a8b71..09ff4613b9 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -81,7 +81,18 @@ static cl::opt NoVerify("disable-verify", cl::Hidden, static cl::opt DisableSimplifyLibCalls("disable-simplify-libcalls", cl::desc("Disable simplify-libcalls")); -static int compileModule(char**, LLVMContext&); +static cl::opt ShowMCEncoding("show-mc-encoding", cl::Hidden, + cl::desc("Show encoding in .s output")); + +static cl::opt EnableDwarfDirectory( + "enable-dwarf-directory", cl::Hidden, + cl::desc("Use .file directives with an explicit directory.")); + +static cl::opt AsmVerbose("asm-verbose", + cl::desc("Add comments to directives."), + cl::init(true)); + +static int compileModule(char **, LLVMContext &); // GetFileNameRoot - Helper function to get the basename of a filename. static inline std::string @@ -270,10 +281,9 @@ static int compileModule(char **argv, LLVMContext &Context) { TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); Options.DisableIntegratedAS = NoIntegratedAssembler; - - // Override default to generate verbose assembly unless we've seen the flag. - if (AsmVerbose.getNumOccurrences() == 0) - Options.MCOptions.AsmVerbose = true; + Options.MCOptions.ShowMCEncoding = ShowMCEncoding; + Options.MCOptions.MCUseDwarfDirectory = EnableDwarfDirectory; + Options.MCOptions.AsmVerbose = AsmVerbose; std::unique_ptr target( TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr, -- cgit v1.2.3