summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmStreamer.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/MC/MCAsmStreamer.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/MC/MCAsmStreamer.cpp')
-rw-r--r--lib/MC/MCAsmStreamer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index 01de450d97..f83b91779d 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -1605,8 +1605,8 @@ MCStreamer *llvm::createAsmStreamer(MCContext &Context,
bool isVerboseAsm, bool useLoc,
bool useCFI, MCInstPrinter *IP,
MCCodeEmitter *CE, TargetAsmBackend *TAB,
- bool ShowInst, bool DecodeLSDA) {
- if (DecodeLSDA)
+ bool ShowInst) {
+ if (isVerboseAsm)
return new MCLSDADecoderAsmStreamer(Context, OS, isVerboseAsm, useLoc,
useCFI, IP, CE, TAB, ShowInst);