diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-06-17 20:55:01 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-06-17 20:55:01 +0000 |
commit | e266ce6c6eaf52ebe2b18d85b5e23788cf2f6ef4 (patch) | |
tree | c7d879c91ca3f723bd05c17c913adf6375e289ba /lib/CodeGen/LLVMTargetMachine.cpp | |
parent | da26ad501b9125c323f58f756826cf17114a9e6f (diff) |
Use the verbose asm flag instead of a new flag for decoding the LSDA.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133292 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 4ed959e120..b98fbed695 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -72,8 +72,6 @@ static cl::opt<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden, cl::desc("Show encoding in .s output")); static cl::opt<bool> ShowMCInst("show-mc-inst", cl::Hidden, cl::desc("Show instruction structure in .s output")); -static cl::opt<bool> DecodeMCLSDA("decode-mc-lsda", cl::Hidden, - cl::desc("Print LSDA in human readable format in .s output")); static cl::opt<bool> EnableMCLogging("enable-mc-api-logging", cl::Hidden, cl::desc("Enable MC API logging")); static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden, @@ -154,8 +152,7 @@ bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM, hasMCUseCFI(), InstPrinter, MCE, TAB, - ShowMCInst, - DecodeMCLSDA); + ShowMCInst); AsmStreamer.reset(S); break; } |