summaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/llvm/MC/MCStreamer.h3
-rw-r--r--include/llvm/Target/TargetRegistry.h11
2 files changed, 5 insertions, 9 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 6f017136c2..69be46bdd5 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -557,8 +557,7 @@ namespace llvm {
MCInstPrinter *InstPrint = 0,
MCCodeEmitter *CE = 0,
TargetAsmBackend *TAB = 0,
- bool ShowInst = false,
- bool DecodeLSDA = false);
+ bool ShowInst = false);
/// createMachOStreamer - Create a machine code streamer which will generate
/// Mach-O format object files.
diff --git a/include/llvm/Target/TargetRegistry.h b/include/llvm/Target/TargetRegistry.h
index 0bec8bc1ec..a464822893 100644
--- a/include/llvm/Target/TargetRegistry.h
+++ b/include/llvm/Target/TargetRegistry.h
@@ -47,8 +47,7 @@ namespace llvm {
MCInstPrinter *InstPrint,
MCCodeEmitter *CE,
TargetAsmBackend *TAB,
- bool ShowInst,
- bool DecodeLSDA);
+ bool ShowInst);
/// Target - Wrapper for Target specific information.
///
@@ -101,8 +100,7 @@ namespace llvm {
MCInstPrinter *InstPrint,
MCCodeEmitter *CE,
TargetAsmBackend *TAB,
- bool ShowInst,
- bool DecodeLSDA);
+ bool ShowInst);
private:
/// Next - The next registered target in the linked list, maintained by the
@@ -336,11 +334,10 @@ namespace llvm {
MCInstPrinter *InstPrint,
MCCodeEmitter *CE,
TargetAsmBackend *TAB,
- bool ShowInst,
- bool DecodeLSDA) const {
+ bool ShowInst) const {
// AsmStreamerCtorFn is default to llvm::createAsmStreamer
return AsmStreamerCtorFn(Ctx, OS, isVerboseAsm, useLoc, useCFI,
- InstPrint, CE, TAB, ShowInst, DecodeLSDA);
+ InstPrint, CE, TAB, ShowInst);
}
/// @}