aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2007-12-23 20:58:16 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2007-12-23 20:58:16 +0000
commit81361d6a28eb29988fef865afaf182f7fe1511ad (patch)
tree8ff76b818a2552b57a509dbd7daaa6225608e7d5
parent99d562d8fc6684ebaa4d8df458f8d3340b46e4d4 (diff)
downloadexternal_llvm-81361d6a28eb29988fef865afaf182f7fe1511ad.zip
external_llvm-81361d6a28eb29988fef865afaf182f7fe1511ad.tar.gz
external_llvm-81361d6a28eb29988fef865afaf182f7fe1511ad.tar.bz2
Setting GlobalDirective in TargetAsmInfo by default rather than
providing a misleading facility. It's used once in the MIPS backend and hardcoded as "\t.globl\t" everywhere else. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45338 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Mips/MipsTargetAsmInfo.cpp1
-rw-r--r--lib/Target/TargetAsmInfo.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/Mips/MipsTargetAsmInfo.cpp b/lib/Target/Mips/MipsTargetAsmInfo.cpp
index 2d3eff1..aa7576f 100644
--- a/lib/Target/Mips/MipsTargetAsmInfo.cpp
+++ b/lib/Target/Mips/MipsTargetAsmInfo.cpp
@@ -26,7 +26,6 @@ MipsTargetAsmInfo::MipsTargetAsmInfo(const MipsTargetMachine &TM) {
ReadOnlySection = "\t.rdata";
ZeroDirective = "\t.space\t";
BSSSection = "\t.section\t.bss";
- GlobalDirective = "\t.globl\t";
LCOMMDirective = "\t.lcomm\t";
if (TM.getRelocationModel() == Reloc::Static)
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp
index fc91871..090bb07 100644
--- a/lib/Target/TargetAsmInfo.cpp
+++ b/lib/Target/TargetAsmInfo.cpp
@@ -67,7 +67,7 @@ TargetAsmInfo::TargetAsmInfo() :
EightByteConstantSection(0),
SixteenByteConstantSection(0),
ReadOnlySection(0),
- GlobalDirective(0),
+ GlobalDirective("\t.globl\t"),
SetDirective(0),
LCOMMDirective(0),
COMMDirective("\t.comm\t"),