summaryrefslogtreecommitdiff
path: root/tools/llvm-mc
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 /tools/llvm-mc
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 'tools/llvm-mc')
-rw-r--r--tools/llvm-mc/llvm-mc.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/llvm-mc/llvm-mc.cpp b/tools/llvm-mc/llvm-mc.cpp
index 48e2a61af8..077f0e6700 100644
--- a/tools/llvm-mc/llvm-mc.cpp
+++ b/tools/llvm-mc/llvm-mc.cpp
@@ -61,10 +61,6 @@ static cl::opt<bool>
ShowInstOperands("show-inst-operands",
cl::desc("Show instructions operands as parsed"));
-static cl::opt<bool>
-DecodeLSDA("decode-lsda",
- cl::desc("Print LSDA in human readable format"));
-
static cl::opt<unsigned>
OutputAsmVariant("output-asm-variant",
cl::desc("Syntax variant to use for output printing"));
@@ -361,8 +357,7 @@ static int AssembleInput(const char *ProgName) {
Str.reset(TheTarget->createAsmStreamer(Ctx, FOS, /*asmverbose*/true,
/*useLoc*/ true,
/*useCFI*/ true, IP, CE, TAB,
- ShowInst,
- DecodeLSDA));
+ ShowInst));
} else if (FileType == OFT_Null) {
Str.reset(createNullStreamer(Ctx));
} else {