summaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetLoweringObjectFile.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-05-05 06:49:15 +0000
committerBill Wendling <isanbard@gmail.com>2011-05-05 06:49:15 +0000
commit087aad44cb37b361e8ed84f197138b366c764f9a (patch)
tree49eaa33acce1d2ec7231015e03b37456ab6ecb9a /include/llvm/Target/TargetLoweringObjectFile.h
parent81937619b5da7271bdc90d47a11a6b463cbe54f0 (diff)
downloadllvm-087aad44cb37b361e8ed84f197138b366c764f9a.tar.gz
llvm-087aad44cb37b361e8ed84f197138b366c764f9a.tar.bz2
llvm-087aad44cb37b361e8ed84f197138b366c764f9a.tar.xz
Remove a flag that would set the ".eh" symbol as .globl. MachO was the only one
who used this flag, and it now emits CFI and doesn't emit this anymore. All other targets left this flag "false". <rdar://problem/8486371> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130918 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLoweringObjectFile.h')
-rw-r--r--include/llvm/Target/TargetLoweringObjectFile.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Target/TargetLoweringObjectFile.h b/include/llvm/Target/TargetLoweringObjectFile.h
index 7402ed6972..ec814ff044 100644
--- a/include/llvm/Target/TargetLoweringObjectFile.h
+++ b/include/llvm/Target/TargetLoweringObjectFile.h
@@ -97,10 +97,6 @@ protected:
/// weak_definition of constant 0 for an omitted EH frame.
bool SupportsWeakOmittedEHFrame;
- /// IsFunctionEHSymbolGlobal - This flag is set to true if the ".eh" symbol
- /// for a function should be marked .globl.
- bool IsFunctionEHSymbolGlobal;
-
/// IsFunctionEHFrameSymbolPrivate - This flag is set to true if the
/// "EH_frame" symbol for EH information should be an assembler temporary (aka
/// private linkage, aka an L or .L label) or false if it should be a normal
@@ -119,9 +115,6 @@ public:
Ctx = &ctx;
}
- bool isFunctionEHSymbolGlobal() const {
- return IsFunctionEHSymbolGlobal;
- }
bool isFunctionEHFrameSymbolPrivate() const {
return IsFunctionEHFrameSymbolPrivate;
}