summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmInfoDarwin.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-13 19:02:16 +0000
committerChris Lattner <sabre@nondot.org>2009-09-13 19:02:16 +0000
commit7c30191393c99c9ba804f1a01942a9e130c53904 (patch)
tree3b59aa0d47baf8fdda621929cb359029c1e2a9b0 /lib/MC/MCAsmInfoDarwin.cpp
parent1026c163c82d4d3481548bf69a18ac10ebd728c6 (diff)
downloadllvm-7c30191393c99c9ba804f1a01942a9e130c53904.tar.gz
llvm-7c30191393c99c9ba804f1a01942a9e130c53904.tar.bz2
llvm-7c30191393c99c9ba804f1a01942a9e130c53904.tar.xz
remove MAI::JumpTableSpecialLabelPrefix now that MAI
has real information about linker private linkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmInfoDarwin.cpp')
-rw-r--r--lib/MC/MCAsmInfoDarwin.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/MC/MCAsmInfoDarwin.cpp b/lib/MC/MCAsmInfoDarwin.cpp
index 38b9e5b90b..d6a4e740ed 100644
--- a/lib/MC/MCAsmInfoDarwin.cpp
+++ b/lib/MC/MCAsmInfoDarwin.cpp
@@ -30,11 +30,6 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
InlineAsmStart = " InlineAsm Start";
InlineAsmEnd = " InlineAsm End";
- // In non-PIC modes, emit a special label before jump tables so that the
- // linker can perform more accurate dead code stripping. We do not check the
- // relocation model here since it can be overridden later.
- JumpTableSpecialLabelPrefix = "l";
-
// Directives:
WeakDefDirective = "\t.weak_definition ";
WeakRefDirective = "\t.weak_reference ";
@@ -54,6 +49,5 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
Is_EHSymbolPrivate = false;
GlobalEHDirective = "\t.globl\t";
SupportsWeakOmittedEHFrame = false;
-
}