diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-01-05 22:53:45 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-01-05 22:53:45 +0000 |
commit | d60de5187833d7d818edaab6351244255e1a1007 (patch) | |
tree | 8e0332927059c0d64685bceac0c85830ae583d41 /include/llvm | |
parent | a80c859df377908c687d59e9c0fc65006796b719 (diff) | |
download | external_llvm-d60de5187833d7d818edaab6351244255e1a1007.zip external_llvm-d60de5187833d7d818edaab6351244255e1a1007.tar.gz external_llvm-d60de5187833d7d818edaab6351244255e1a1007.tar.bz2 |
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
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 16 |
1 files changed, 0 insertions, 16 deletions
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; } |