summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-06-17 20:55:01 +0000
committerBill Wendling <isanbard@gmail.com>2011-06-17 20:55:01 +0000
commite266ce6c6eaf52ebe2b18d85b5e23788cf2f6ef4 (patch)
treec7d879c91ca3f723bd05c17c913adf6375e289ba /lib/CodeGen/LLVMTargetMachine.cpp
parentda26ad501b9125c323f58f756826cf17114a9e6f (diff)
downloadllvm-e266ce6c6eaf52ebe2b18d85b5e23788cf2f6ef4.tar.gz
llvm-e266ce6c6eaf52ebe2b18d85b5e23788cf2f6ef4.tar.bz2
llvm-e266ce6c6eaf52ebe2b18d85b5e23788cf2f6ef4.tar.xz
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.cpp5
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;
}