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 | b74b9de151e257684569328487a83b8a00590cdb (patch) | |
tree | 0d55350f2ba8f48aa6ea3a925b9d86e43291292e /llvm/lib/MC/MCAsmStreamer.cpp | |
parent | ea7822685a539a17dcc0daacc0c0fbc98fb8300e (diff) | |
download | bcm5719-llvm-b74b9de151e257684569328487a83b8a00590cdb.tar.gz bcm5719-llvm-b74b9de151e257684569328487a83b8a00590cdb.zip |
Use the verbose asm flag instead of a new flag for decoding the LSDA.
llvm-svn: 133292
Diffstat (limited to 'llvm/lib/MC/MCAsmStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmStreamer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCAsmStreamer.cpp b/llvm/lib/MC/MCAsmStreamer.cpp index 01de450d971..f83b91779d9 100644 --- a/llvm/lib/MC/MCAsmStreamer.cpp +++ b/llvm/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); |