diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCStreamer.h | 3 | ||||
-rw-r--r-- | include/llvm/Target/TargetRegistry.h | 11 |
2 files changed, 5 insertions, 9 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h index 6f01713..69be46b 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 0bec8bc..a464822 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); } /// @} |