From d60de5187833d7d818edaab6351244255e1a1007 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 5 Jan 2009 22:53:45 +0000 Subject: Revert r61415 and r61484. Duncan was correct that these weren't needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61765 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetAsmInfo.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'include/llvm') diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index c880179..0de7410 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -448,20 +448,10 @@ namespace llvm { /// bool DwarfRequiresFrameSection; // Defaults to true. - /// FDEEncodingRequiresSData4 - If set, the FDE Encoding in the EH section - /// includes DW_EH_PE_sdata4. - /// - bool FDEEncodingRequiresSData4; // Defaults to true - /// NonLocalEHFrameLabel - If set, the EH_frame label needs to be non-local. /// bool NonLocalEHFrameLabel; // Defaults to false. - /// Force32BitFDEReference - Force the FDE initial location and address - /// range to be 32-bit sized. - /// - bool Force32BitFDEReference; // Defaults to true. - /// GlobalEHDirective - This is the directive used to make exception frame /// tables globally visible. /// @@ -828,15 +818,9 @@ namespace llvm { bool doesDwarfRequireFrameSection() const { return DwarfRequiresFrameSection; } - bool doesFDEEncodingRequireSData4() const { - return FDEEncodingRequiresSData4; - } bool doesRequireNonLocalEHFrameLabel() const { return NonLocalEHFrameLabel; } - bool doesRequire32BitFDEReference() const { - return Force32BitFDEReference; - } const char *getGlobalEHDirective() const { return GlobalEHDirective; } -- cgit v1.1